LINT_TO_STRING
PROGRAM LINT_TO_STRING_DEMO
VAR
STRING1: STRING;
LINT1: LINT;
END_VAR
STRING1:=LINT_TO_STRING(LINT1);
END_PROGRAM
Function converts the input numerical value to a string.
Input | Type | Description |
---|---|---|
IN | ANY_LINT | Input value |
Output | Type | Description |
---|---|---|
=> | ANY_STRING | Output value - converted to a string |