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