STRING.toLowerCase
Returns the string converted to lower case.
Syntax
toLowerCase( )
RETURNS STRING
Usage
This method converts the current STRING variable to lower case
and returns the resulting string.
If the original STRING variable is NULL, the
result is NULL.
Example
MAIN
DEFINE s STRING
LET s = "SOME TEXT"
DISPLAY s.toLowerCase()
END MAIN
Output:
some text