正则表达式:通过定义字符串模式,来搜索、编辑和处理文本。
Java对正则表达式的支持有两种,一种是通过Regex包的Pattern和Matcher类配合使用,另一种是通过String类对象的split, replace,matches方法等直接使用。
Pattern, Matcher类,配合使用
Pattern.matches //只能匹配一次结果
Pattern pattern = new Pattern(“正则表达式”);
Matcher matcher = pattern.matcher("要匹配的字符串"); //Matcher类提供了对正则表达式的分组支持,以及对正则表达式的多次匹配支持
更多参考:
https://www.runoob.com/java/java-regular-expressions.html
https://www.cnblogs.com/yw0219/p/8047938.html