目前移动号段:
134、135、136、137、138、139
150、151、152、157、158、159
182、183、184、187、188
147
178
public static boolean isMobilPhone(String phone){
Pattern pattern = Pattern.compile("^((13[4-9])|(15[0-2,7-9])|(18[2-4,7-8])|(147)|(178))\\d{8}$");Matcher matcher = pattern.matcher(phone);
returnmatcher.matches();
} 原文链接:https://www.f2er.com/regex/360770.html