String hello = "Hello";
String.format("%s %s %s %s %s %s", hello, hello, hello, hello, hello, hello);
hello hello hello hello hello hello
Czy cześć zmienna trzeba powtarzać kilka razy w wywołaniu metody formacie lub jest tam skróconą wersję, która pozwala określić argument kiedyś być zastosowany do wszystkich %s
tokeny?Co powiesz na to, że masz wielokrotnie ten sam parametr w String.format?
https://docs.oracle.com/javase/8/docs/api/java/util/Formatter.html#dpos – Vadzim