Arduino:
Concatenating strings

How to:

Let’s do some string-joining! All within setup because we just want a quick look—no need for a repeat loop.

void setup() {
  // Start serial communication
  Serial.begin(9600);

  // Create two strings
  String greeting = "Hello, ";
  String name = "Arduino!";

  // Concatenate them
  String combined = greeting + name;

  // Print the result
  Serial.println(combined); 
}
void loop() {
  // Nothing to loop over here
}

You run it, and the output waits for you in the Serial Monitor:

Hello, Arduino!

Deep Dive

Concatenating strings is old as hills in programming—been around since early languages took their baby steps. In Arduino, you can use either the + operator like we did, or the += to tack a string onto an existing one. Behind the scenes, these operators are actually calling functions that handle memory allocation and copying the characters efficiently.

Why not always concatenate? Well, if you’re dealing with tiny microcontrollers and doing a lot of string-merging, you could run into memory issues—because every time you combine, you create a new string, consuming more memory. For heavy string manipulation, folks sometimes resort to character arrays (classic C-style) to save space and avoid potential performance hits.

Also, check string functions like concat(), which can add not just strings but other data types to an existing string.

See Also

Looking for more? Here’s where to dive deeper: