Function - Concatenate strings.
IN_1 : STRING
Any string variable or constant
expression
...
IN_N : STRING Any string variable or constant
expression
Q : STRING Concatenation of all inputs
In FBD or LD language, the block may have up to 16 inputs. In IL or ST, the function accepts a variable number of inputs (at least 2).
Note that you also can use the "+" operator to concatenate strings.
Q := CONCAT ('AB', 'CD', 'E');
(* now Q is 'ABCDE' *)
Op1:
LD 'AB'
CONCAT 'CD', 'E'
ST Q (* Q is now 'ABCDE'
*)