Logo

Programming-Idioms

  • Scheme
  • Java
  • Go

Idiom #289 Concatenate two strings

Create the string s by concatenating the strings a and b.

s = f'{a}{b}'
s = a + b
String s = a.concat(b);

a cannot be null.
import java.util.Formatter;
StringBuilder t = new StringBuilder(a);
Formatter f = new Formatter(t);
f.format("%s", b).flush();
String s = t.toString();
String s = "%s%s".formatted(a, b);
String s = a + b;
s := a + b
S : constant String := A & B;

New implementation...