zoukankan      html  css  js  c++  java
  • Java替换中使用正则表达式实现中间模糊匹配

    使用“.+?”实现中间模糊匹配的代码:

    public class Test {
    
    	public static void main(String[] args) {
    		String str="总会在某一个回眸的时刻醉了流年,濡湿了柔软的心.总会有某一个回眸的时刻醉了流年,濡湿了柔软的心";
    		str=str.replaceAll("总会在.+?流年", "总会有某一个回眸的时刻醉了流年");
    		System.out.println(str);
    	}
    
    }

    注:只能模糊匹配中间不确定的字符串

  • 相关阅读:
    Git
    Spring
    Linux
    Linux
    Linux
    Linux
    Linux
    Linux
    Linux
    Linux
  • 原文地址:https://www.cnblogs.com/t0404/p/10290968.html
Copyright © 2011-2022 走看看