我正在尝试用值替换字符串中的{0}。我为此编写的代码是:
String formattedText = MessageFormat.format("'{0}'", "1");
System.out.println(formattedText);
它给出的输出为:{0}
请让我知道我在做什么错。
最佳答案
试试下面的代码:
String formattedText = MessageFormat.format("''{0}''", "1");
System.out.println(formattedText);
您可以查看this答案以获取更多信息。