STRING.toUpperCase

Returns the string converted to upper case.

Syntax

toUpperCase( )
       RETURNING result STRING

Usage

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.

Example

MAIN
  DEFINE s STRING
  LET s = "Some text"
  DISPLAY s.toUpperCase()
END MAIN