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

string3 = string1 + string 2; string3 += string2;

Parameters

string, string1, string2, string3 - a string variable

Returns

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

See also

Guide Home