Logo

Programming-Idioms

  • Rust
  • Scala
  • Python

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.

s = 'Our sun has {} planets'.format(x)
s = f'Our sun has {x} planets'
s = 'Our sun has %s planets' % x
let s = format!("Our sun has {} planets", x);
let s = format!("Our sun has {x} planets");

Rust >= 1.58
#include <stdio.h>
char s[32] = "";
sprintf(s, "Our sun has %i planets", x);

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