How to add 5 pluses to an existing string using String.format?
I know that this way you can add spaces to an existing line:
String str = "Hello";
String padded = String.format("%-10s", str);
How to add plus? I did not find how the plus symbol is indicated.
the result should be:
"Hello+++++"