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

手机号验证正则表达式

程序员文章站 2022-04-22 17:55:31
...

    public static boolean checkPhoneNumber(String mobiles) {
        Pattern pattern = null;
        Matcher matcher = null;
        boolean result = false;
        pattern = Pattern.compile("^[1][3,4,5,8][0-9]{9}$"); // 验证手机号
        matcher = pattern.matcher(mobiles);
        result = matcher.matches();
        return result;
    }