I've done this in Java before but I can't remember how exactly.
You create a String:
String foo = "She %s sea shells by the seashore.";
Then you can write into the String the word "sells".
What do you use for that?
|
|
|
|||
|
|
|
You're looking for the
|
|||
|
|
|
String.format?
|
||||
|
|
|
Straight from the source (and my bookmarks)...
UPDATE: Sorry meant to include the link: http://download.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html |
||||
|
|