js使用正则表达式判断是否为手机号码

js使用正则表达式判断是否为手机号码

public static boolean isMobileNO(String mobile) {
    Pattern p = Pattern
        .compile("^((13[0-9])|(15[^4,\\D])|(18[0-9]))\\d{8}$");
    Matcher m = p.matcher(mobile);
    return m.matches();
  }


返回顶部
跳到底部

Copyright 2011-2024 南京追名网络科技有限公司 苏ICP备2023031119号-6 乌徒帮 All Rights Reserved Powered by Z-BlogPHP Theme By open开发

请先 登录 再评论,若不是会员请先 注册