欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

手机号码格式验证工具类

程序员文章站 2022-04-04 10:42:38
...
public class RegexVerifyUtil {

    /**不严谨的表达式="/^[1]([3-9])[0-9]{9}$/"* */
    public static final String MOBILE="/^[1](([3][0-9])|([4][5-9])|([5][0-3,5-9])|([6][5,6])|([7][0-8])|([8][0-9])|([9][1,8,9]))[0-9]{8}$/";

    public static Boolean verifyMobile(String phone){
        return Pattern.compile(MOBILE).matcher(phone).matches();
    }

相关标签: util 手机号码