append() is used to add a new string to the end of the current string value. The method returns a string value, consisting of the initial string concatenated with the newly specified one:
DEFINE str, str_app STRING
LET str = "My string"
LET str_app = str.Append(" with an appended part")
DISPLAY str
DISPLAY str_app -- Displays "My string with an appended part"