Skip to content

Commit 8cffe13

Browse files
committed
fix 更新了最新的手机号正则表达式匹配法则\
issue Tencent#240
1 parent 89fb9bf commit 8cffe13

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

APIJSONORM/src/main/java/apijson/StringUtil.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,7 @@ public static boolean isNotEmpty(String s, boolean trim) {
311311
PATTERN_ALPHA_BIG = Pattern.compile("^[A-Z]+$");
312312
PATTERN_ALPHA_SMALL = Pattern.compile("^[a-z]+$");
313313
PATTERN_NAME = Pattern.compile("^[0-9a-zA-Z_]+$");//已用55个中英字符测试通过
314+
//newest phone regex expression reference https://github.com/VincentSit/ChinaMobilePhoneNumberRegex
314315
PATTERN_PHONE = Pattern.compile("^1(?:3\\d{3}|5[^4\\D]\\d{2}|8\\d{3}|7(?:[0-35-9]\\d{2}|4(?:0\\d|1[0-2]|9\\d))|9[0-35-9]\\d{2}|6[2567]\\d{2}|4(?:(?:10|4[01])\\d{3}|[68]\\d{4}|[579]\\d{2}))\\d{6}$");
315316
PATTERN_EMAIL = Pattern.compile("^([a-zA-Z0-9_\\-\\.]+)@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.)|(([a-zA-Z0-9\\-]+\\.)+))([a-zA-Z]{2,4}|[0-9]{1,3})(\\]?)$");
316317
PATTERN_ID_CARD = Pattern.compile("(^[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]$)|(^[1-9]\\d{5}\\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\\d{2}$)");

0 commit comments

Comments
 (0)