java format use same value multiple times code example
Example: java format use same value multiple times
String.format("%1$s %1$s %2$s %2$s", "hello", "world");
// hello hello world world
String.format("%1$s %1$s %2$s %2$s", "hello", "world");
// hello hello world world