• 正则表达式在Java中的使用


    正则表达式在Java中的使用不仅限于String类中的match()方法!!!

    正则中的^与$

    首先我们来了解这两个符号在正则表达式中的作用:

    ^ 符号放在表达式头部表示开始匹配

    $符号放在尾部表示结束匹配

    如果同时携带^与$符,表示整体匹配,$后面如果再携带其他东西,是会匹配失败的

    整体匹配失败

    如果不携带$则表示部分部分匹配,如图:

    结论:以$结尾的正则只能匹配一个字符串,反之可以匹配多个字符串。

    String的matches方法与上文的异同

    来看这几组匹配结果:

    String regular = "^/(?[^/]+)/(?[^/]+)/pattern$";
    String example = "/org/app/pattern";
    System.out.println(example.matches(regular));//true
    String regular = "^/(?[^/]+)/(?[^/]+)/pattern$";
    String example = "/org/app/pattern123";
    System.out.println(example.matches(regular));//false
    String regular = "^/(?[^/]+)/(?[^/]+)/pattern";
    String example = "/org/app/pattern123";
    System.out.println(example.matches(regular));//false

    与上文中正则匹配的异同就在于,当没有$结尾的时候,正常的正则匹配显示的是部分匹配。而Spring中的match方法给出的匹配结果是false。所以如果遇到这种场景,使用String的match方法很有可能出问题

    Java中的Pattern

    使用Pattern编译正则表达式之后再进行match就可以规避String中match方法出现的问题,直接看代码

    String regular = "^/(?[^/]+)/(?[^/]+)/pattern";
    String example = "/org/app/pattern123";
    System.out.println(example.matches(regular));//false
    
    Pattern compile = Pattern.compile(regular);
    Matcher matcher = compile.matcher(example);
    boolean isMatch = matcher.find();
    System.out.println(isMatch);//true

    使用group方法来提取匹配结果

    String regular = "^/(?[^/]+)/(?[^/]+)/pattern";
    String example = "/org/app/pattern123";
    System.out.println(example.matches(regular));//false
    
    Pattern compile = Pattern.compile(regular);
    Matcher matcher = compile.matcher(example);
    boolean isMatch = matcher.find();
    System.out.println(isMatch);//true
    System.out.println(matcher.group(0));// /org/app/pattern
    System.out.println(matcher.group(1));//org
    System.out.println(matcher.group(2));//app
    System.out.println(matcher.group("app"));//app
    System.out.println(matcher.group("org"));//org
  • 相关阅读:
    C和指针 第14章 预处理器 14.5 其他指令
    JDK8新特性之Stream流
    BeanFactory与ApplicationContext的区别
    Semaphore学习
    k8s部署
    Dreamweaver简单网页——HTML+CSS小米官网首页的设计与实现
    AMS 新闻视频广告的云原生容器化之路
    南科大计算机系:将开源和企业引入计算机课程教学
    网络编程基础
    Python学习笔记(一)
  • 原文地址:https://blog.csdn.net/Candyz7/article/details/126656261