base.StringBuffer.append

Append a string at the end of the current string.

Syntax

append(
   str STRING )
  1. str is the string to append to the string buffer.

Usage

The append() method appends a string to the internal string buffer.

Example

DEFINE buf base.StringBuffer
LET buf = base.StringBuffer.create()
CALL buf.append("abc")
...

For a complete example, see Example 1: Add strings to a StringBuffer.