In Java ME, I need to do a simple string substitution:
String.format("This string contains placeholders %s %s %s", "first", "second", "third");
Placeholders don't have to be at the end of the string:
String.format ("Your name is %s and you are %s years old", "Mark", "18");
But, as far as I can see, String.format method is not available in j2me. What is an alternative to this? How can I achieve simple string formatting, without writing my own function?