关于java:验证是否是字符串是不是符合手机号

35次阅读

共计 180 个字符,预计需要花费 1 分钟才能阅读完成。

public static boolean isMobile(final String str) {

    Pattern p = null;
    Matcher m = null;
    boolean b = false;
    p = Pattern.compile("^[1][3,4,5,7,8][0-9]{9}$"); // 验证手机号
    m = p.matcher(str);
    b = m.matches();
    return b;
}

正文完
 0