正则表达式判断移动号码

前端之家收集整理的这篇文章主要介绍了正则表达式判断移动号码前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

目前移动号段:

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

猜你在找的正则表达式相关文章