码迷,mamicode.com
首页 > 其他好文 > 详细

replaceAll

时间:2019-08-26 23:01:46      阅读:83      评论:0      收藏:0      [点我收藏+]

标签:public   acea   regex   return   bsp   根据   src   ati   正则   

 /**
  * 根据正则是,替换对应内容
  * @return
  */
 public static String replaceByRegex(String regex,String src,String tar) {
  if(regex == null || "".equals(regex)) {
   return src;
  }
  if(src == null || "".equals(src)) {
   return "";
  }
  if(tar == null) {
   return src;
  }
  
  return src.replaceAll(regex, tar);
 }

replaceAll

标签:public   acea   regex   return   bsp   根据   src   ati   正则   

原文地址:https://www.cnblogs.com/CoderRdf/p/11415385.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!