String opérateur +

Description

Concatène deux objets String en un seul nouvel objet String. La deuxième chaîne de caractère est accolée à la première, et le résultat est placé dans un nouvel objet String. Fonctionne de la même façon que concat()

Syntaxe

string3 = string1 + string2;

Paramètres

  • string1: une variable de type String()
  • string2: une autre variable de type String()
  • string3: une autre variable de type String()

Valeurs Renvoyées

  • Un nouveau String qui est la combinaison des deux Strings de départs.

Exemple

String stringOne, stringTwo; void setup() { Serial.begin(9600); stringOne = String("Hello"); stringTwo = String(" Wolrd"); stringThree = String(" ArduinoGetStarted.Com"); Serial.println("\n\nAppending to a string:"); } void loop() { Serial.println(stringOne); // prints "Hello" Serial.println(stringOne + stringTwo); // prints "Hello Wolrd" Serial.println(stringOne + stringThree); // prints "Hello ArduinoGetStarted.Com" // do nothing while true: while(true); }

ARDUINO BUY RECOMMENDATION

Arduino UNO R3
Arduino Starter Kit
Please note: These are Amazon affiliate links. If you buy the components through these links, We will get a commission at no extra cost to you. We appreciate it.

※ OUR MESSAGES