| The StringBuffer class / base.StringBuffer methods | |
Converts the string in the buffer to lower case.
toLowerCase()
The toLowerCase() method converts the current string to lower case.
CALL buf.append("AbC")
CALL buf.toLowerCase()
DISPLAY buf.toString() -- Shows abc