判断手机号码的正则表达式

前端之家收集整理的这篇文章主要介绍了判断手机号码的正则表达式前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
publicstaticbooleanisMobileNo(Stringmobiles){
StringtelRegex="[1][3578]\\d{9}"; if(TextUtils.isEmpty(mobiles)){ returnfalse; }else{ returnmobiles.matches(telRegex); } }

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