RIGHT

The RIGHT function returns a right-hand start string of a string.
RIGHT (STR, SIZE) means: take the first SIZE characters from the right in the STR string.
FUNCTION RIGHT: STRING (255)
VAR_INPUT
STR : STRING(255);
SIZE : INT;
END_VAR
Example in IL:
LD 'SUSI'
RIGHT 3
ST Var1 (* Result is 'USI' *)
Example in ST:
Var1 := RIGHT ('SUSI',3);
Requirements
Development environment | Target platform | PLC library to include |
---|---|---|
TwinCAT v3.0.0 | PC or CX (x86) | Tc2_Standard |