Removes leading spaces from the character string and returns the reduced character string.
FUNCTION F_LTrim: T_MaxString
VAR_INPUT
VAR_INPUT
in : T_MaxString;
END_VAR
in: The string to be converted (Type:T_MaxString).
Example:
PROGRAM MAIN VAR sLTrim : STRING; END_VAR sLTrim := F_LTrim(' <trim ');(* result: '<trim ' *) sLTrim := F_LTrim(' <trim');(* result: '<trim' *) sLTrim := F_LTrim('<trim');(* result: '<trim' *) sLTrim := F_LTrim('');(* result: '' *)
Diff:
Ticket moved from /prj/tcunit4codesys/tickets/7/
Ticket moved from /prj/csunit/tickets/10/