Format Java używaj tej samej wartości wiele razy

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