手机号验证正则表达式
程序员文章站
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; }
上一篇: 余承东:华为未退出美国市场 用一流产品赢得消费者信任
下一篇: 不再等了,我走了