This page is also available in 3 other languages

+

[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, myString2, myString3 - a String variable

Returns

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

See also