Formatter f = new Formatter();
f.format("Our sun has %s planets", x);
f.flush();
String s = f.toString();
String s = String.format("Our sun has %s planets", x);
String f = "Our sun has {0,number} planets",
s = format(f, x);
String s = "Our sun has %s planets".formatted(x);
s = std::format("Our sun has {} planets", x);
var s = $"Our sun has {x} planets";
var s = "Our sun has $x planets";
s = "Our sun has #{x} planets"
write (unit=s,fmt='(*(G0))') "Our sun has ",x," planets."
s := fmt.Sprintf("Our sun has %d planets", x)
let s = `Our sun has ${x} planets`;
val s = "Our sun has $x planets"
local str=string.format("Our sun has %d planets",x)
$s = "Our sun has {$x} planets";
s := 'Our sun has '+x.ToString+' planets';
s := Format('Our sun has %d planets',[x]);
s := 'Our sun has '+IntToStr(x)+' planets';
$s = "Our sun has $x planets"
s = f'Our sun has {x} planets'
s = "Our sun has #{x} planets."
let s = format!("Our sun has {x} planets");
let s = format!("Our sun has {} planets", x);