toLowerCase() is used to convert the characters of the buffer string to the lower case. The lower case characters, symbols and numbers will not be converted. The method does not require any arguments and does not return anything.
Syntax:
stb.toLowerCase()
Usage example:
MAIN
DEFINE stb base.StringBuffer
LET stb = base.StringBuffer.create()
CALL stb.append("STRING")
CALL stb.toLowerCase()
DISPLAY stb.toString()
END MAIN