# re: 郁闷的问题。关于String中replaceAll方法 回复 更多评论
2007-09-15 09:09 by
replaceAll 参数是正则表达式, 不是普通的字符串. 看看有没有不符合要求的字符串.
# re: 郁闷的问题。关于String中replaceAll方法 回复 更多评论
2007-09-15 09:22 by
楼上说的有道理,特别是.它在正则表达式里面有特殊的含 义
# re: 郁闷的问题。关于String中replaceAll方法 回复 更多评论
2007-09-15 09:31 by
实际上要求替换的字符就是‘<a href=../../08/19/10483.html>下一篇: PHP+MySQL应用中使用XOR运算加密算法</a>’这个字符串,我看了,doc上说‘\’和‘$’符号这个要注册,我这个里边没有这些字符啊
# re: 郁闷的问题。关于String中replaceAll方法 回复 更多评论
2007-09-15 09:55 by
最好还是用我们自己实现的替换字符串的方法来做(JDK 1.4 之前找的代码):
// ------------------------------------ 字符串处理方法
// ----------------------------------------------
/**
* 将字符串 source 中的 oldStr 替换为 newStr, 并以大小写敏感方式进行查找
*
* @param source
* 需要替换的源字符串
* @param oldStr
* 需要被替换的老字符串
* @param newStr
* 替换为的新字符串
*/
public static String replace(String source, String oldStr, String newStr) {
return replace(source, oldStr, newStr, true);
}
/**
* 将字符串 source 中的 oldStr 替换为 newStr, matchCase 为是否设置大小写敏感查找
*
* @param source
* 需要替换的源字符串
* @param oldStr
* 需要被替换的老字符串
* @param newStr
* 替换为的新字符串
* @param matchCase
* 是否需要按照大小写敏感方式查找
*/
public static String replace(String source, String oldStr, String newStr,
boolean matchCase) {
if (source == null) {
return null;
}
// 首先检查旧字符串是否存在, 不存在就不进行替换
if (source.toLowerCase().indexOf(oldStr.toLowerCase()) == -1) {
return source;
}
int findStartPos = 0;
int a = 0;
while (a > -1) {
int b = 0;
String str1, str2, str3, str4, strA, strB;
str1 = source;
str2 = str1.toLowerCase();
str3 = oldStr;
str4 = str3.toLowerCase();
if (matchCase) {
strA = str1;
strB = str3;
} else {
strA = str2;
strB = str4;
}
a = strA.indexOf(strB, findStartPos);
if (a > -1) {
b = oldStr.length();
findStartPos = a + b;
StringBuffer bbuf = new StringBuffer(source);
source = bbuf.replace(a, a + b, newStr) + "";
// 新的查找开始点位于替换后的字符串的结尾
findStartPos = findStartPos + newStr.length() - b;
}
}
return source;
}
# re: 郁闷的问题。关于String中replaceAll方法 回复 更多评论
2007-09-15 21:25 by
'.'这个也是正则里的特殊符号呀
你最好去用Apache的Commons下的StringUtils.replace()。
而不是用一些效率很低、实现也比较丑陋的私有实现方式。