base.StringBuffer.toLowerCase

Converts the string in the buffer to lower case.

Syntax

toLowerCase()

Usage

The toLowerCase() method converts the current string to lower case.

Example

CALL buf.append("AbC")
CALL buf.toLowerCase()
DISPLAY buf.toString() -- Shows abc