I have strings like:
"{0}_something_{1}-{2}-something"
and i need to convert these strings to
"%s_something_%s-%s-something"
what is the best way to do this?
|
I would use a regexp.
Output:
Edit:
A regexp that only replaces if there only are digits between
|
|||||||
|
If you're trying to create a Java format string, then you should probably retain the order of those replacements, otherwise strings like
|
|||||||||||
|
|
|||
|
|
|
||||
|
|
|
Consider using MessageFormat. - http://download.oracle.com/javase/6/docs/api/java/text/MessageFormat.html |
|||
|
|
{0]...{1}...and etc. with%s. – mre Jun 21 '11 at 12:25_? – Kaj Jun 21 '11 at 12:32