+ 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


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

Parameters

string, string2, string3: variables of type String

Returns

new String that is the combination of the original two Strings

Example

StringAppendOperator

See also

String
String Addition operator


Language Reference Home

The text of the 86Duino reference is a modification of the Arduino reference, and is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.