// checkPhone判断手机号格式
public boolean checkPhone(String phone) {
Pattern pattern = Pattern
.compile("^((13[0-9])|(15[^4,\\D])|(18[0,5-9]))\\d{8}$");
Matcher matcher = pattern.matcher(phone);
if (matcher.matches()) {
return true;
}
return false;
}
checkPhone判断手机号格式
最新推荐文章于 2021-05-18 11:09:16 发布