The STRING data type as class / STRING data type methods |
Returns the string converted to lower case.
toLowerCase( ) RETURNING result STRING
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.
MAIN DEFINE s STRING LET s = "Some text" DISPLAY s.toLowerCase() END MAIN