共计 1074 个字符,预计需要花费 3 分钟才能阅读完成。
靓号检测:(无法保证时效性,注意 及时更新)主要可以检测连号(正连 12345、倒连 65432)、AABB 号、手机号码、日期号(生日号、年度号)、ABBCABB 号,3 位以上重复号。更多类型号码检测可以根据以下表达式改造。
匹配 6 位顺增 regex.Pattern = “(?:0(?=1)|1(?=2)|2(?=3)|3(?=4)|4(?=5)|5(?=6)|6(?=7)|7(?=8)|8(?=9)){5}d”
匹配 3 位以上顺增 regex.Pattern = “(?:0(?=1)|1(?=2)|2(?=3)|3(?=4)|4(?=5)|5(?=6)|6(?=7)|7(?=8)|8(?=9)){3,}+d
匹配 6 位顺降 regex.Pattern = “(?:9(?=8)|8(?=7)|7(?=6)|6(?=5)|5(?=4)|4(?=3)|3(?=2)|2(?=1)|1(?=0)){5}d”
匹配 6 位顺增或顺降 regex.Pattern = “(?:(?:0(?=1)|1(?=2)|2(?=3)|3(?=4)|4(?=5)|5(?=6)|6(?=7)|7(?=8)|8(?=9)){5}|(?:9(?=8)|8(?=7)|7(?=6)|6(?=5)|5(?=4)|4(?=3)|3(?=2)|2(?=1)|1(?=0)){5})d”
匹配 4 - 9 位连续的数字 (?:(?:0(?=1)|1(?=2)|2(?=3)|3(?=4)|4(?=5)|5(?=6)|6(?=7)|7(?=8)|8(?=9)){3,}|(?:9(?=8)|8(?=7)|7(?=6)|6(?=5)|5(?=4)|4(?=3)|3(?=2)|2(?=1)|1(?=0)){3,})d
匹配 3 位以上的重复数字 ([d])1{2,}
匹配日期类型的数字 (19|20)[d]{2}(1[0-2]|0?[1-9])(31|2[0-9]|1[0-9]|0?[0-9])
手机号码类 (13[0-9]|15[0-9]|18[0-9])([d]{2,4}){2}
匹配 33111 类型的 ([d])1{1,}([d])2{2,}
匹配 5331533 类型的 (([d]){1,}([d]){1,})1{1,}
匹配 22334,123355 类型的 ([d])1{1,}([d])2{1,}
部分摘自
https://segmentfault.com/q/1010000018046739?utm_source=tag-newest
https://www.cnblogs.com/hdl217/p/3503409.html