import java.text.MessageFormat;
public class test { public static void main(String[] args) { String str="{0} hello! {1}"; String python = MessageFormat.format(str, "python","java"); System.out.println(python); } }
import java.text.MessageFormat;
public class test { public static void main(String[] args) { String str="{0} hello! {1}"; String python = MessageFormat.format(str, "python","java"); System.out.println(python); } }