-

CONCAT

Type Function
Description Concatenates the second input string at IN2 to the end of the first input string at IN1.
Notes
  • The first input string S1 (applied to IN1) can be used as output string at the same time. The ST notation for this case would be:

         S1 := CONCAT(S1,S2);

  • Do not use S1 (input string applied to IN1) or S2 (input string applied to IN2) as output strings because the output string will add up until the output string is too short and the string is cleared.
  • When the string output is longer than 80 characters and the FU/FB is directly connected to another FU/FB, temporary string variables of size 80 are used. Calculation/usage will fail. Use an intermediate local variable in-between.
  • Further inputs can be added.
Parameters Inputs

IN1

IN2

Output

OUT
Error behavior Error behavior
Additional information EN/ENO behavior