Logo

Programming-Idioms

  • Clojure
  • Java

Idiom #302 String interpolation

Given the integer x = 8, assign to the string s the value "Our sun has 8 planets", where the number 8 was evaluated from x.

import static java.text.MessageFormat.format;
String f = "Our sun has {0,number} planets",
       s = format(f, x);

"... MessageFormat provides a means to produce concatenated messages in a language-neutral way. Use this class to construct messages displayed for end users."
String s = String.format("Our sun has %s planets", x);
import java.util.Formatter;
Formatter f = new Formatter();
f.format("Our sun has %s planets", x);
f.flush();
String s = f.toString();
String s = "Our sun has %s planets".formatted(x);
#include <stdio.h>
char s[32] = "";
sprintf(s, "Our sun has %i planets", x);

New implementation...
< >
programming-idioms.org