Linux Shell 正则表达式
简介
正则表达式(regular expression)描述了一种字符串匹配的模式(pattern),可以用来检查一个串是否含有某种子串、将匹配的子串替换或者从某个串中取出符合某个条件的子串等。
常用正则表达式
正则在线解析工具:
正则表达式常用规则
规则名称/正则表达式 | 规则说明 |
用户名 | 长度至少3位,至多16位,由字母,数字或破折号组成 |
正则表达式 | /^[a-z0-9_-]{3, 16}$/ |
强密码 一 | 长度至少6位,至少有一位大写字母,至少有一位小写字母,至少有一位数字,至少有一位特俗字符。 |
正则表达式 | /(?=^.{6,}$)((?=.*\w)(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*[|!"$%&\/\(\)\?\^\'\\\+\-\*]))^.*/ |
强密码 二 | 说明:密码中必须包含字母、数字、特称字符,至少8个字符,最多30个字符 |
正则表达式 | /(?=.*[0-9])(?=.*[a-zA-Z])(?=.*[^a-zA-Z0-9]).{8,30}/ |
手机号码 | 校验有效的手机号码 |
正则表达式 | /^[1][3,4,5,6,7,8,9][0-9]{9}$/ |
身份证 | 身份证的校验 |
正则表达式 | /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/ |
电子邮箱 | 电子邮箱的校验 |
正则表达式 | /^([A-Za-z0-9_\-\.])+\@([A-Za-z0-9_\-\.])+\.([A-Za-z]{2,4})$/ |
日期 | 日期 YYYY-MM-DD |
正则表达式 | /^\d{4}(\-)\d{1,2}\1\d{1,2}$/ |
日期时间 | 日期 YYYY-MM-DD hh:mm:ss |
正则表达式 | /^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/ |
邮政编号 | 邮政编号的校验 |
正则表达式 | /^\d{6}$/ |
URL (http, https or ftp) | 匹配URL连接开头为http://、https://、ftp://的连接 |
正则表达式 | ^(((https?|ftp):\/\/)?([\w\-\.])+(\.)([\w]){2,4}([\w\/+=%&_\.~?\-]*))*$ |
URL链接 | 目标是匹配出协议、域名、端口号port 、path 、search |
协议 | ^(https?:)?\/\/ (匹配http://toutiao.com、https://toutiao.com、//toutiao.com) |
域名 | [^?:/]+ (从 //往后面匹配,只要没有代表 :的 port、代表 search 的 ?、代表 path的 /,那么就都属于域名,中括号里的 ^表示排除) |
端口 | (:\d+)? (端口号肯定以:开头,后面跟着的只要是数字就都属于 port :\d+,由于不一定有端口号,所以用 ? 修饰) |
path | (\/[^?]*)? (肯定以 / 开头,只要不遇到代表 search 的 ?,那么就都属于 path:\/[^?]*,由于可能没有 path,所以用 ? 修饰) |
search | (\?.*)? (肯定以 ? 开头,后面所有的字符都属于 search(不考虑 hash 路由):\?(.*),由于可能没有 search,所以用 ? 修饰) |
规则合并后正则表达式 | /^((https?):)?\/\/([^?:/]+)(:(\d+))?(\/[^?]*)?(\?(.*))?/ |
IPv4 地址 | 匹配任何有效的IP地址 |
正则表达式一 | (?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?) |
正则表达式二 | /^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/ |
QQ号 | QQ号的校验说明:5-11位数字 |
正则表达式 | /^[1-9][0-9]{4,10}$/ |
微信号 | 微信号的校验;说明:6至20位,以字母开头,字母,数字,减号,下划线 |
正则表达式 | /^[a-zA-Z]([-_a-zA-Z0-9]{5,19})+$/ |
车牌号 | 车牌号的校验 |
正则表达式 | /^[京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}[A-Z0-9]{4}[A-Z0-9挂学警港澳]{1}$/ |
字符串 | 只含字母的字符串 |
正则表达式 | /^[a-zA-Z]+$/ |
字符串 | 包含中文的字符串 |
正则表达式 | /[\u4E00-\u9FA5]/ |
16进制颜色 | 16进制颜色的校验 |
正则表达式 | /^#?([a-fA-F0-9]{6}|[a-fA-F0-9]{3})$/ |
整数 | 整数的校验 |
正则表达式 | /^[-+]?\d*$/ |
小数 | 小数的校验 |
正则表达式 | /^[-\+]?\d+(\.\d+)?$/ |
保留n位小数 | 正则表达式中的n表示保留小数位数,个位数不为0 |
正则表达式 | ^([1-9]+[\d]*(.[0-9]{1,${n}})?)$ |
常用字符
字符 | 说明 |
---|---|
\ | 将下一字符标记为特殊字符、文本、反向引用或八进制转义符。例如, n匹配字符 n。\n 匹配换行符。序列 \\ 匹配 \ ,\( 匹配 (。 |
^ | 匹配输入字符串开始的位置。如果设置了 RegExp 对象的 Multiline 属性,^ 还会与"\n"或"\r"之后的位置匹配。 |
$ | 匹配输入字符串结尾的位置。如果设置了 RegExp 对象的 Multiline 属性,$ 还会与"\n"或"\r"之前的位置匹配。 |
* | 零次或多次匹配前面的字符或子表达式。例如,zo* 匹配"z"和"zoo"。* 等效于 {0,}。 |
+ | 一次或多次匹配前面的字符或子表达式。例如,"zo+"与"zo"和"zoo"匹配,但与"z"不匹配。+ 等效于 {1,}。 |
? | 零次或一次匹配前面的字符或子表达式。例如,"do(es)?"匹配"do"或"does"中的"do"。? 等效于 {0,1}。 |
{n} | n 是非负整数。正好匹配 n 次。例如,"o{2}"与"Bob"中的"o"不匹配,但与"food"中的两个"o"匹配。 |
{n,} | n 是非负整数。至少匹配 n 次。例如,"o{2,}"不匹配"Bob"中的"o",而匹配"foooood"中的所有 o。"o{1,}"等效于"o+"。"o{0,}"等效于"o*"。 |
{n,m} | m 和 n 是非负整数,其中 n <= m。匹配至少 n 次,至多 m 次。例如,"o{1,3}"匹配"fooooood"中的头三个 o。'o{0,1}' 等效于 'o?'。注意:您不能将空格插入逗号和数字之间。 |
? | 当此字符紧随任何其他限定符(*、+、?、{n}、{n,}、{n,m})之后时,匹配模式是"非贪心的"。"非贪心的"模式匹配搜索到的、尽可能短的字符串,而默认的"贪心的"模式匹配搜索到的、尽可能长的字符串。例如,在字符串"oooo"中,"o+?"只匹配单个"o",而"o+"匹配所有"o"。 |
. | 匹配除"\r\n"之外的任何单个字符。若要匹配包括"\r\n"在内的任意字符,请使用诸如"[\s\S]"之类的模式。 |
(pattern) | 匹配 pattern 并捕获该匹配的子表达式。可以使用
9 属性从结果"匹配"集合中检索捕获的匹配。若要匹配括号字符 ( ),请使用"("或者")"。 |
(?:pattern) | 匹配 pattern 但不捕获该匹配的子表达式,即它是一个非捕获匹配,不存储供以后使用的匹配。这对于用"or"字符 ( |
(?=pattern) | 执行正向预测先行搜索的子表达式,该表达式匹配处于匹配 pattern 的字符串的起始点的字符串。它是一个非捕获匹配,即不能捕获供以后使用的匹配。例如,'Windows (?=95 |
(?!pattern) | 执行反向预测先行搜索的子表达式,该表达式匹配不处于匹配 pattern 的字符串的起始点的搜索字符串。它是一个非捕获匹配,即不能捕获供以后使用的匹配。例如,'Windows (?!95 |
x | y |
[xyz] | 字符集。匹配包含的任一字符。例如,"[abc]"匹配"plain"中的"a"。 |
[^xyz] | 反向字符集。匹配未包含的任何字符。例如,"[^abc]"匹配"plain"中"p","l","i","n"。 |
[a-z] | 字符范围。匹配指定范围内的任何字符。例如,"[a-z]"匹配"a"到"z"范围内的任何小写字母。 |
[^a-z] | 反向范围字符。匹配不在指定的范围内的任何字符。例如,"[^a-z]"匹配任何不在"a"到"z"范围内的任何字符。 |
\b | 匹配一个字边界,即字与空格间的位置。例如,"er\b"匹配"never"中的"er",但不匹配"verb"中的"er"。 |
\B | 非字边界匹配。"er\B"匹配"verb"中的"er",但不匹配"never"中的"er"。 |
\cx | 匹配 x 指示的控制字符。例如,\cM 匹配 Control-M 或回车符。x 的值必须在 A-Z 或 a-z 之间。如果不是这样,则假定 c 就是"c"字符本身。 |
\d | 数字字符匹配。等效于 [0-9]。 |
\D | 非数字字符匹配。等效于 [^0-9]。 |
\f | 换页符匹配。等效于 \x0c 和 \cL。 |
\n | 换行符匹配。等效于 \x0a 和 \cJ。 |
\r | 匹配一个回车符。等效于 \x0d 和 \cM。 |
\s | 匹配任何空白字符,包括空格、制表符、换页符等。与 [ \f\n\r\t\v] 等效。 |
\S | 匹配任何非空白字符。与 [^ \f\n\r\t\v] 等效。 |
\t | 制表符匹配。与 \x09 和 \cI 等效。 |
\v | 垂直制表符匹配。与 \x0b 和 \cK 等效。 |
\w | 匹配任何字类字符,包括下划线。与"[A-Za-z0-9_]"等效。 |
\W | 与任何非单词字符匹配。与"[^A-Za-z0-9_]"等效。 |
\xn | 匹配 n,此处的 n 是一个十六进制转义码。十六进制转义码必须正好是两位数长。例如,"\x41"匹配"A"。"\x041"与"\x04"&"1"等效。允许在正则表达式中使用 ASCII 代码。 |
*num* | 匹配 num,此处的 num 是一个正整数。到捕获匹配的反向引用。例如,"(.)\1"匹配两个连续的相同字符。 |
*n* | 标识一个八进制转义码或反向引用。如果 *n* 前面至少有 n 个捕获子表达式,那么 n 是反向引用。否则,如果 n 是八进制数 (0-7),那么 n 是八进制转义码。 |
*nm* | 标识一个八进制转义码或反向引用。如果 *nm* 前面至少有 nm 个捕获子表达式,那么 nm 是反向引用。如果 *nm* 前面至少有 n 个捕获,则 n 是反向引用,后面跟有字符 m。如果两种前面的情况都不存在,则 *nm* 匹配八进制值 nm,其中 n 和 m 是八进制数字 (0-7)。 |
\nml | 当 n 是八进制数 (0-3),m 和 l 是八进制数 (0-7) 时,匹配八进制转义码 nml。 |
\un | 匹配 n,其中 n 是以四位十六进制数表示的 Unicode 字符。例如,\u00A9 匹配版权符号 (©)。 |
作者:java奥斯卡 链接:https://juejin.cn/post/7020303920966664222 来源:稀土掘金
普通字符
https://juejin.cn/post/7104152252180332581
https://juejin.cn/post/6844904058206027783
https://cloud.tencent.com/developer/article/1728594#:~:text=Shell%E6%AD%A3%E5%88%99%E8%A1%A8%E8%BE%BE%E5%BC%8F%EF%BC%9A%E4%BD%BF%E7%94%A8%E5%8D%95%E4%B8%AA%E5%AD%97%E7%AC%A6%E4%B8%B2%E6%9D%A5%E6%8F%8F%E8%BF%B0%E3%80%81%E5%8C%B9%E9%85%8D%E4%B8%80%E7%B3%BB%E5%88%97%E5%8C%B9%E9%85%8D%E6%9F%90%E4%B8%AA%E5%8F%A5%E6%B3%95%E8%A7%84%E5%88%99%E7%9A%84%E5%AD%97%E7%AC%A6%E4%B8%B2%EF%BC%8CLinux%E4%B8%8A%E7%9A%84%E4%B8%80%E4%BA%9B%E7%BC%96%E8%BE%91%E5%99%A8%E5%B0%B1%E6%94%AF%E6%8C%81%20%E4%BE%8B%E5%A6%82%EF%BC%9A%20vi%2C,grep%2C%20awk%2Csed%2Cexpr%20%E7%AD%89%E7%AD%89%E5%B7%A5%E5%85%B7%EF%BC%8C%E5%9B%A0%E4%B8%BA%E5%A5%B9%E4%BB%AC%E6%9C%89%E6%94%AF%E6%8C%81%E6%AD%A3%E8%A7%84%E8%A1%A8%E7%A4%BA%E6%B3%95%EF%BC%8C%E6%89%80%E4%BB%A5%E8%BF%99%E4%BA%9B%E5%B7%A5%E5%85%B7%E5%B0%B1%E5%8F%AF%E4%BB%A5%E4%BD%BF%E7%94%A8%E6%AD%A3%E8%A7%84%E8%A1%A8%E7%A4%BA%E6%B3%95%E7%9A%84%E7%89%B9%E6%AE%8A%E5%AD%97%E7%AC%A6%E6%9D%A5%E8%BF%9B%E8%A1%8C%E5%AD%97%E7%AC%A6%E4%B8%B2%E7%9A%84%E5%A4%84%E7%90%86%3B
https://juejin.cn/post/7063733368461983752
普通字符主要讲解以下内容,并举例说明
// String regStr = "[a-z]";//匹配a-z中任意一个字符// String regStr = "[A-Z]";//匹配A-Z中任何一个字符// String regStr = "abc";//匹配字符串abc// String regStr = "(?i)abc";//匹配字母abc不区分大小写// String regStr = "[0-9]";//匹配0-9任何一个字符// String regStr = "[^0-9]";//匹配不是0-9中的任何一个字符// String regStr = "[^0-9]{2}";//匹配2个不是0-9的字符// String regStr = "\\d";//匹配任何一个数字字符,等价于[0-9]// String regStr = "\\D";//匹配任何一个非数字字符,等价于[^0-9]// String regStr = "\\w";//匹配任何一个数字、字母、下划线,等价于[0-9a-zA-Z_]// String regStr = "\\W";//匹配任何一个除了数字、字母、下划线,等价于[^0-9a-zA-Z_]// String regStr = "\\s";//匹配任何一个空字符// String regStr = "\\S";//匹配任何一个非空字符// String regStr = "ab|cd";//选择匹配符,匹配字符串ab或者cd
1) String regStr = "[a-z]";//匹配a-z中任意一个字符
@Test public void test1() { String str = "abc2021"; String regStr = "[a-z]"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); } }
结果展示
2) String regStr = "[A-Z]";//匹配A-Z中任何一个字符
@Testpublic void test2(){ String str = "ABCabc2021"; String regStr = "[A-Z]"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
3)String regStr = "abc";//匹配字符串abc
@Testpublic void test2(){ String str = "ABCabc2021"; String regStr = "abc"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
4)String regStr = "(?i)abc";//匹配字母abc不区分大小写
@Testpublic void test2(){ String str = "ABCabc2021"; String regStr = "(?i)abc"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
5) String regStr = "[0-9]";//匹配0-9任何一个字符
@Testpublic void test2(){ String str = "ABCabc2021"; String regStr = "[0-9]"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
6) String regStr = "[^0-9]";//匹配不是0-9中的任何一个字符
@Testpublic void test2(){ String str = "ABCabc2021"; String regStr = "[^0-9]"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
限定符
/** * 限定符 * *:表示出现任意次数,0次或者n次,如(abc)*表示abc出现0次或者多次 * +:表示出现至少1次或者n次,如(abc)+表示abc出现1次或者多次 * ?:表示出现至少0次或者1次,如abc?表示c出现0次或者1次 * {n}:表示出现n次,如[0-9]{2},表示匹配2次数字 * {n,}表示至少出现n次,如[0-9]{3,}表示匹配至少3次数字 * {n,m}表示出现至少n次,最多m次,如[0-9]{2,4}表示匹配次数2-4次数字 */
1) *:表示出现任意次数,0次或者n次
@Testpublic void test2(){ String str = "zypabcabc2021"; String regStr = "zyp(abc)*"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
2)+:表示出现至少1次或者n次,如(abc)+表示abc出现1次或者多次
@Testpublic void test2(){ String str = "zypabc2021"; String regStr = "zyp(abc)+"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
3)?:表示出现至少0次或者1次,如abc?表示c出现0次或者1次
@Testpublic void test2(){ String str = "zyp2021"; String regStr = "zyp(abc)?"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
4){n}:表示出现n次,如[0-9]{2},表示匹配2次数字
@Testpublic void test2(){ String str = "zyp2021"; String regStr = "[0-9]{2}"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
5){n,}表示至少出现n次,如[0-9]{3,}表示匹配至少3次数字
@Testpublic void test2(){ String str = "zyp2021"; String regStr = "[0-9]{2,}"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
6){n,m}表示出现至少n次,最多m次,如[0-9]{2,4}表示匹配次数2-4次数字
@Testpublic void test2(){ String str = "zyp2021"; String regStr = "[0-9]{2,4}"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
定位符
/** * 定位符 * ^:表示字符串以什么开头的意思。如:有一个字符串123abc,正则为^[0-9]+[a-z]*(必须已数字开头),则能成功匹配上。如果字符串为a123abc则匹配不上 * $:表示字符串以什么结束的意思。如:有一个字符串123abc,正则为^[0-9]+[a-z]+$(表示以数字开头,字母结尾)则能成功匹配上。如果字符串为a123abc1则匹配不上 * \\b:表示边缘匹配(字符串的结尾或者空格之后)。有一个字符串abc123abc,正则为abc\\b,匹配到的为最后的那个abc * \\B:与\\b相反 */
1) ^:表示字符串以什么开头的意思
@Testpublic void test2(){ String str = "2021zyp"; String regStr = "^[0-9]+"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
2) $:表示字符串以什么结束的意思
@Testpublic void test2(){ String str = "2021zyp"; String regStr = "[0-9]$"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
没有匹配到,因为要以数字结束
3) \\b:表示边缘匹配(字符串的结尾或者空格之后)
@Testpublic void test2(){ String str = "zyp2021zyp"; String regStr = "zyp\\b"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
匹配到的是最后一个“zyp”
4) \\B:与\\b相反
@Testpublic void test2(){ String str = "zyp2021zyp"; String regStr = "zyp\\B"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
匹配到的是第一个“zyp”
分组
/** * 分组:可分为捕获分组和非捕获分组 * 1.捕获分组: * 1)如(\\d\\d)(\\d\\d)表示匹配4位数字,如果字符串位2021abcd, * 我们通过matcher.group(0)得到2021 * 通过matcher.group(1)得到20 * 通过matcher.group(2)得到21 * 由此可见()起到分组的作用 * * 2)如(?<a1>\\d\\d)(?<a2>\\d\\d)表示匹配4位数字,如果字符串位2021abcd, * 我们通过matcher.group(0)得到2021 * 通过matcher.group(1)得到20,还可以通过matcher.group(a1)得到20 * 通过matcher.group(2)得到21,还可以通过matcher.group(a2)得到21 * 由此可见()起到分组的作用 * * 2.非捕获分组:不能通过group(1)或者group(2)获取值 * 1)如20(?:20|21|22)表示匹配2020|2021|2022 * 2) 如20(?=20|21|22)表示匹配2020或2021或2022中的20 * 3)如20(?!20|21|22)表示匹配不匹配2020或2021或2022中的20,匹配其它20 * */
捕获分组
1)如(\\d\\d)(\\d\\d)表示匹配4位数字,如果字符串为2021abcd,
@Testpublic void test2(){ String str = "2021abcd"; String regStr = "(\\d\\d)(\\d\\d)"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("matcher.group(0):"+matcher.group(0)); System.out.println("分组一:matcher.group(1):"+matcher.group(1)); System.out.println("分组二:matcher.group(2):"+matcher.group(2)); }}
结果展示
结论:由此可见()会将正则分组,并按顺序给出编号,从1开始
2) (?<a1>\\d\\d)(?<a2>\\d\\d)表示匹配4位数字,如果字符串位2021abcd
@Testpublic void test2(){ String str = "2021abcd"; String regStr = "(?<a1>\\d\\d)(?<a2>\\d\\d)"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("matcher.group(0):"+matcher.group(0)); System.out.println("分组一:matcher.group(1):"+matcher.group(1)); System.out.println("分组二:matcher.group(2):"+matcher.group(2)); System.out.println("分组名a1:matcher.group(1):"+matcher.group("a1")); System.out.println("分组名a2:matcher.group(2):"+matcher.group("a2")); }}
结果展示
结论:由此可见()除了能将正则分组,还能按顺序给出编号,从1开始。还可以给分组取名字,并根据名字获取对应匹配的值
非捕获分组
1)如20(?:20|21|22)表示匹配2020|2021|2022
@Testpublic void test2(){ String str = "2021a2022B2023"; String regStr = "20(?:20|21|22)"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
结果展示
2)如20(?=20|21|22)表示匹配2020或2021或2022中的20
@Testpublic void test2(){ String str = "2021a2022B2023"; String regStr = "20(?=20|21|22)"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
这里匹配到的20,为2021和2022中的20
3)如20(?!20|21|22)表示匹配不匹配2020或2021或2022中的20,匹配其它20
@Testpublic void test2(){ String str = "2021a2022B2023"; String regStr = "20(?!20|21|22)"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); }}
这里匹配到的20为2023中的20
反向引用
/** * 反向引用 * 如果我们要找到一个字符串中连续4位威数字,并且第一位和第4位要相同,第二位和第三位相同。 * 这时候我们使用反向引用就很简单 * 反向引用的内部用法:\\n其中n代表分组号,如:字符串12345678870008,正则为(\\d)(\\d)\\2\\1 * 反向引用的外部用法:$n其中n代表分组号 */
字符串12345678870008,正则为(\\d)(\\d)\\2\\1
@Test public void test2(){ String str = "12345678870008"; /** * 第一个(\\d)会分配的组为1 * 第2个(\\d)会分配的组为2 * \\2:表示引用组2的值,因此2和3的值就会相同 * \\1:表示引用组1的值,因此1和4的值会相同 */ String regStr = "(\\d)(\\d)\\2\\1"; Pattern compile = Pattern.compile(regStr); Matcher matcher = compile.matcher(str); while(matcher.find()){ System.out.println("匹配到的数据为:"+matcher.group(0)); } }
结果展示