日常生存中许多女性至好来月信的时刻,老是会出现如此这般的...
电商取代实体商家,是不成逆转的事实。因此我意志的好多原实...
VMware提供高水平的可用性,但你一经需要备份。当不安静发生时...
近日,美国食物药品料理局(FDA)官网败露,当今收到铺张者投诉...
中国工农赤军第十全军(简称红十全军)确立后,在中央提倡的...
![]() 正则抒发式(regular expression)描画了一种字符串匹配的形态(pattern),不错用来查验一个串是否含有某种子串、将匹配的子串替换八成从某个串中取出相宜某个条目的子串等。 常用正则抒发式 世俗字符主要老师以下本体,并例如讲明
// 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中任何一个字符 @Test public 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 @Test public 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不离别大小写 @Test public 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任何一个字符 @Test public 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中的任何一个字符 @Test public 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次 @Test public 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次八成屡次 @Test public 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次 @Test public 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次数字 @Test public 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次数字 @Test public 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次数字 @Test public 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) ^:示意字符串以什么开头的深嗜 @Test public 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) $:示意字符串以什么已毕的深嗜 @Test public 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:示意边际匹配(字符串的收尾八成空格之后) @Test public 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相背 @Test public 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, @Test public 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 @Test public 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 @Test public 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 @Test public 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 @Test public 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)); } } 成果展示
|