下面一段代码是关于正在表达式判断是否为手机号码的代码,具体代码如下所述:
1
2
3
4
5
6
|
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();
}
|
以上所述是小编给大家介绍的使用正则表达式判断是否为手机号码,希望对大家有所帮助,如果大家有任何疑问欢迎给我留言,小编会及时回复大家的,在此也非常感谢大家对服务器之家网站的支持!