The STRING data type as class / STRING data type methods |
Returns the string converted to upper case.
toUpperCase( ) RETURNING result STRING
This method converts the current STRING variable to upper 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.toUpperCase() END MAIN