我有一个小的api,可以通过更新属性持有者将字符串转换为另一个字符串(模式{{property_name}}
这是我的尝试:
public class TestApp {
public static void main(String[] args) {
Map<String, String> props = new HashMap<>();
props.put("title", "login");
String sourceTitle = "<title>{{ title }}</title>";
System.out.println(updatePropertyValue(sourceTitle, props));
// Print: <title>login</title>
// ERROR if
props.put("title", "${{__messages.loginTitle}}");
System.out.println(updatePropertyValue(sourceTitle, props));
// Expected: <title>${{__messages.loginTitle}}</title>
// Exception:
// Exception in thread "main"
// java.lang.IllegalArgumentException: named capturing group has 0 length name
// at java.util.regex.Matcher.appendReplacement(Matcher.java:838)
}
static String updatePropertyValue(String line, Map<String, String> properties) {
for (Entry<String, String> entry : properties.entrySet()) {
String holder = "\\{\\{\\s*" + entry.getKey() + "\\s*\\}\\}";
line = Pattern.compile(holder, Pattern.CASE_INSENSITIVE)
.matcher(line).replaceAll(entry.getValue());
}
return line;
}
}
它工作正常如果属性值没有任何特殊字符,例如$。
请假设属性键仅包含字母。
任何解决方案?谢谢!
答案 0 :(得分:3)
使用Pattern.quoteReplacement
来转义替换中的所有元字符。
答案 1 :(得分:0)
我猜你需要regex escape entry.getKey()
部分。 This应该有助于这样做。