正则表达式判断手机号?
发布网友
发布时间:2022-04-25 14:58
我来回答
共2个回答
热心网友
时间:2022-04-22 22:19
下面一段代码是关于正在表达式判断是否为手机号码的代码,具体代码如下所述:
public static boolean isMobileNO(String mobile) {
Pattern p = Pattern
.compile("^((13[0-9])|(15[^4,\\D])|(18[0-9]))\\d{8}$");
Matcher m = p.matcher(mobile);
return m.matches();
}
热心网友
时间:2022-04-22 23:37
^1\d{10}$