CONCAT
PROGRAM CONCAT_DEMO VAR STRING1,STRING2,STRING3: STRING; END_VAR STRING1:=CONCAT(IN1:=STRING2,IN2:=STRING3); END_PROGRAM
Function links all input strings to a single output string.
Input | Type | Description |
IN1.. | ANY_STRING | Input strings |
Output | Type | Description |
⇒ | ANY_STRING | Output string |