-

CONCAT_WSTRING

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.
  • Further inputs can be added.
Parameters Inputs

IN1

IN2

Output

OUT
Error behavior Error behavior
Additional information EN/ENO behavior