Table of Contents

CONCAT

Block name

CONCAT

ST call

PROGRAM CONCAT_DEMO
     VAR 
      STRING1,STRING2,STRING3: STRING;
  END_VAR
    STRING1:=CONCAT(IN1:=STRING2,IN2:=STRING3);
END_PROGRAM

Description

Function links all input strings to a single output string.

Inputs

InputType Description
IN1..ANY_STRINGInput strings

Outputs

OutputType Description
ANY_STRINGOutput string

Application example