Формат Java используйте одно и то же значение несколько раз

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