Commit 5c4ceb2e by fanlongfei

Merge branch 'test' into 'production'

Test



See merge request !4
parents 0f31ecb0 4c91d92c
...@@ -10,7 +10,8 @@ import java.util.regex.Pattern; ...@@ -10,7 +10,8 @@ import java.util.regex.Pattern;
*/ */
public final class RegexUtils { public final class RegexUtils {
private static Pattern mobile = Pattern.compile("^((13[0-9])|(15[^4,\\D])|(18[0,5-9]))\\d{8}$"); // private static Pattern mobile = Pattern.compile("^((13[0-9])|(15[^4,\\D])|(18[0,5-9]))\\d{8}$");
private static Pattern mobile = Pattern.compile("(\\+\\d+)?1[345678]\\d{9}$");
private static Pattern chinese = Pattern.compile("[\u4e00-\u9fa5]"); private static Pattern chinese = Pattern.compile("[\u4e00-\u9fa5]");
...@@ -110,4 +111,8 @@ public final class RegexUtils { ...@@ -110,4 +111,8 @@ public final class RegexUtils {
return m.find(); return m.find();
} }
public static void main(String[] args) {
boolean mobileNO = isMobileNO("16603042204");
System.out.println(mobileNO);
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment