Java 版 (精华区)
Q: 如何实现字符串的替换?
A:
public static String replace(String allstr,
String replstr1,String replstr2){
while(allstr.indexOf(replstr1)!=-1)
allstr=allstr.substring(0,allstr.indexOf(replstr1))+replstr2+
allstr.substring(allstr.indexOf(replstr1)+replstr1.length());
return allstr;
}
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:4.667毫秒