1

在这样的情况下,我经常使用MessageFormat索引参数:

String text = MessageFormat.format("The goal is {0} points.", 5);

现在我遇到了需要处理以下格式的消息的情况:

"The {title} is {number} points."

因此,值不再被索引,占位符是字符串。我该如何处理这种情况并具有与 with 相同的功能MessageFormatMessageFormat如果参数没有被索引,则抛出解析异常。

谢谢你。

4

1 回答 1

1

一个简单的建议是用正则表达式匹配替换文本参数作为索引,然后像往常一样使用它。这里有一个例子:

int paramIndex = 0;

String text = "The {title} is {number} points.";
String paramRegex = "\\{(.*?)\\}";
Pattern paramPattern = Pattern.compile(paramRegex);
Matcher matcher = paramPattern.matcher(text);

while(matcher.find())
    text = text.replace(matcher.group(), "{" + paramIndex++ + "}");

text = MessageFormat.format(text, "kick", "3");

在这种情况下,text最后将等于“踢球是 3 分”。

于 2015-01-26T23:27:10.217 回答