TO_STRING
PROGRAM TO_STRING_DEMO
VAR
I1: INT;
S1: REAL;
END_VAR
S1:=TO_STRING(I1);
END_PROGRAM
The function brings the input value to the output as a string.
Input | Type | Description |
---|---|---|
IN | ANY_MAGNITUDE | Input value |
Output | Type | Description |
---|---|---|
=> | STRING | Output value |