我想在这里实现一些代码。
String text = "world, java";
String.format("Hello %s cool %s", text);
//result: Hello world cool java
答案 0 :(得分:1)
通过:
你知道,那个方法
public static String format(String format, Object... args) {
一个参数需要零到多个参数!
换句话说:您可以使用split()
将一个字符串分解为一个数组,然后将其传递。或者,您只需手动传递不同的参数:
String.format("Hello %s cool %s", parm1, parm2);
答案 1 :(得分:0)
String text = "world";
String otherText = "java";
String result = String.format("Hello %s cool %s", text, otherText);
//result: Hello world cool java