This page is also available in 2 other languages
Change language 

+

[StringObject Operator]

Description

Combines, or concatenates two Strings into one new String. The second String is appended to the first, and the result is placed in a new String. Works the same as string.concat().

Syntax

myString3 = myString1 + myString2

Parameters

myString1: a String variable.
myString2: a String variable.
myString3: a String variable.

Returns

New String that is the combination of the original two Strings.

See also