base.StringBuffer.append

Append a string at the end of the current string.

Syntax

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

Usage

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

Example

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