public static String replace(String str, String pattern, String replace) {
if(str == null || str.length() < 1) return "";
int s = 0;
int e = 0;
StringBuffer result = new StringBuffer();
while ((e = str.indexOf(pattern, s)) >= 0) {
result.append(str.substring(s, e));
result.append(replace);
s = e+pattern.length();
}
result.append(str.substring(s));
return result.toString();
}
'JAVA야' 카테고리의 다른 글
파일사이즈구하기(멀티파트용량제한에러시 ) (0) | 2009.12.07 |
---|---|
LinkedHashMap 순서가 있는 hash (0) | 2009.12.07 |
리플렉션 (0) | 2009.12.07 |
SingletonTest (0) | 2009.12.07 |
XML을 파싱해보자~ (0) | 2009.09.02 |