您好我正在尝试使用replaceAll替换文本方法文本是一个特定的模式,所以首先我发现使用正则表达式模式的文本,然后在所有这些上应用replaceAll方法。这是我的代码
String regExp = "\\$\\{rate[+-]\\d+(\\.\\d+)D[0-9]\\}";
String text = "${rate+0.0020D2},banana,${rate-0.4002D3},${rate+0.2003D4},${rate+bananD4},${rate+.123.415D4}";
Pattern pattern = Pattern.compile(regExp);
Matcher matcher = pattern.matcher(text);
String match = null;
List<String> matches = new ArrayList<String>();
while (matcher.find()) {
int startIndex = matcher.start();
int endIndex = matcher.end();
match = matcher.group();
matches.add(match.substring(2, match.length() - 1));
}
for(int i=0;i <= matches.size();i++){
text.replaceAll(Pattern.quote(matches.get(i)),Matcher.quoteReplacement("<span class=\"rate\""+i+">"+matches.get(i)+ "</span>"));
System.out.println(text);
}
但我得到了相同的输出。任何人都可以告诉我我在哪里做错了
答案 0 :(得分:3)
跳出来的是replaceAll
返回一个字符串,其中包含所做的更改,它不会更改您调用它的字符串(它可以&#39 ; t,字符串是不可变的。)
所以:
text = text.replaceAll(Pattern.quote(matches.get(i)),Matcher.quoteReplacement("<span class=\"rate\""+i+">"+matches.get(i)+ "</span>"));