Logo

Programming-Idioms

  • JS
  • Elixir
  • Java

Idiom #289 Concatenate two strings

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

String s = "%s%s".formatted(a, b);
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 = a + b;
String s = a.concat(b);

a cannot be null.
const s = a + b;
s = a <> b
S : constant String := A & B;

New implementation...