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毫秒