Append

See Also: String Functions, String Command, Expression Syntax

Purpose

Append returns the concatenation of two strings.

Return Type

String

Syntax

(Append( {string1}, {string2} ))

What It Does

The append function returns a string made up of the concatenation of {string1} and {string2}.

String sMagicWord

 

Move "abraca" To sMagicWord

Move (Append(sMagicWord, "dabra")) To sMagicWord

Notes