| The StringBuffer class / base.StringBuffer methods | |
Removes leading blanks.
trimLeft()
The trimLeft() method removes the leading blanks in the string buffer.
CALL buf.append(" abc ")
CALL buf.trimLeft()
DISPLAY "["||buf.toString()||"]" -- Shows [abc ]