Le format Java utilise la même valeur plusieurs fois

String.format("%1$s %1$s %2$s %2$s", "hello", "world");
// hello hello world world
Cylon