What classes do you use to make string placeholders work?
String template = "You have %1 tickets for %d",
Brr object = new Brr(template, {new Integer(1), new Date()});
object.print();
|
|
|
You have two options:
Of the two,
This prints:
The documentation has many more examples. |
||||
|
|
|
How about Shorthands for it include |
|||
|
|
|
You can call it with a variable number of parameters, like I showed above, or pass it an array of |
|||
|
|
|
The following should work:
Output:
Have a look at http://java.sun.com/j2se/1.5.0/docs/api/java/util/Formatter.html if you want the full reference of conversions. |
||||
|
|
|
|
|||
|
|
|
If you need something a little more powerful for templating strings the Apache Velocity library is pretty useful http://velocity.apache.org/ |
|||
|
|
|
Rythm a java template engine now released with an new feature called String interpolation mode which allows you do something like:
The above case shows you can pass argument to template by position. Rythm also allows you to pass arguments by name:
Links:
|
|||
|
|