Java utilise des variables à l'intérieur des chaînes

Java 15+
String foo = "foo";
String bar = "bar";

String str = "First %s, then %s".formatted(foo, bar);     
aso