What classes do you use to make string templates?
Posted
by EugeneP
on Stack Overflow
See other posts from Stack Overflow
or by EugeneP
Published on 2010-06-01T08:38:26Z
Indexed on
2010/06/01
8:43 UTC
Read the original article
Hit count: 139
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();
© Stack Overflow or respective owner