java-替换以特定字符开头 特定字符结尾的长字符串

private static String replaceAll(String htmlString,
                            String start,
                            String end,
                            String newString,
                            boolean logError,
                            boolean reportError)
   {
      StringBuffer modString = new StringBuffer(htmlString.length());
      int i = 0, j = 0, j2=0;
      int tagFound = 0;
      while(true) {
         // first check if there are any matching start & end
         i = htmlString.indexOf(start, j2);
         if( i != -1 ) {
            j = htmlString.indexOf(end, i);
         } else {
            j = htmlString.indexOf(end, j2);
         }
         if ((i != -1) && (j != -1)) {
            tagFound++;
            modString.append( htmlString.substring(j2, i)).append( newString );
            j2 = j + end.length();// 此处不可以改为
// j2 = modString.length();因为进行查找相同的操作时是在htmlString上// 操作的,htmlString是没有变过的。进行拼接操作的是modString.
         }
         else {
            modString.append( htmlString.substring(j2));
            if((i != -1) && (j == -1) || (i == -1) && (j != -1)) {
               //hack, to report same error message as if no tags found at all.
               //if later determined to report a different error message if we do
               //find tags but the last tag is not matched, we just need
               //to put the logic here.
               tagFound = 0;
            }
            break;
         }
      }
      if( tagFound == 0 ) {
         if (logError) {
            // write the stack trace to the log file
            String msg = "No matching tag for " + start + " or " + end;
            EfsnNonFatalException e = new EfsnNonFatalException(msg);
            LogWriter.log(e);
         }

         if (reportError) {
            return "no matching tag found in replaceAll=" + start;
         }
         else {
            return htmlString;
         }
      }
      return modString.toString();
   }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值