toUpperCase() is used to convert the characters of the string to the uppercase. The uppercase characters, symbols and numbers will not be converted:
DISPLAY string_val.ToUpperCase()
The method does not need any arguments. It returns the converted string (written in uppercase).
If the string is NULL, the method returns NULL.