The F_ToLCase function converts a specified string to lowercase
VAR_INPUT
VAR_INPUT
in : T_MaxString;
END_VAR
in: String to be converted.
Example:
PROGRAM MAIN
VAR
sLCase : STRING;
END_VAR
sLCase := F_ToLCase( 'TO LOWER CASE 1234567890 ÄÖÜß' );
The result is: 'to lower case 1234567890 äöüß'
GLOBAL_SBCS_TABLE := eSBCS_CentralEuropean;
sLCase := F_ToLCase( 'TO LOWER CASE 1234567890 ĄĘŚĆŻŹŁÓ' );
The result is: 'to lower case 1234567890 ąęśćżźłó'
Diff:
Ticket moved from /prj/tcunit4codesys/tickets/9/
Ticket moved from /prj/csunit/tickets/12/