判断输入的字符串是否为手机号
/**
* 判断手机号是否符合规范
* @param phoneNo 输入的手机号
* @return
*/
public static boolean isPhoneNumber(String phoneNo) {
if (TextUtils.isEmpty(phoneNo)) {
return false;
}
if (phoneNo.length() == 11) {
for (int i = 0; i < 11; i++) {
if (!PhoneNumberUtils.isISODigit(phoneNo.charAt(i))) {
return false;
}
}
Pattern p = Pattern.compile("^((13[^4,\\D])" + "|(134[^9,\\D])" +
"|(14[5,7])" +
"|(15[^4,\\D])" +
"|(17[3,6-8])" +
"|(18[0-9]))\\d{8}$");
Matcher m = p.matcher(phoneNo);
return m.matches();
}
return false;
}