place holders text java code example
Example: java string format with placeholder
String s = "hello %s!";
s = String.format(s, "world");
assertEquals(s, "hello world!"); // should be true
String s = "hello %s!";
s = String.format(s, "world");
assertEquals(s, "hello world!"); // should be true