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