Primitive question.. But how do I format string like this:
"Step {1} of {2}"
by substituting variables using Java? In C# it's easy.
|
Primitive question.. But how do I format string like this:
by substituting variables using Java? In C# it's easy. |
||||
|
|
In addition to String.format, also take a look For example:
A nicer example takes advantage of the varargs and autoboxing improvements in Java 1.5 and turns the above into a one-liner:
|
||||
|
|
Take a look at String.format. Note, however, that it takes format specifiers similar to those of C's printf family of functions -- for example:
Would return "Hello world 42". You may find this helpful when learning about the format specifiers. Andy Thomas-Cramer was kind enough to leave this link in a comment below, which appears to point to the official spec. The most commonly used ones are most likely:
This is radically different from C#, which uses positional references with an optional format specifier.
... If you just want to print the result directly, you may find System.out.printf (PrintStream.printf) to your liking. |
|||||||||||||
|
|
If you choose not to use String.format, the other option is the + binary operator
This is the equivalent of
Whichever you use is your choice. StringBuilder is faster, but the speed difference is marginal. I prefer to use the |
|||||||
|