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

java后台利用正则判断是否是手机号

程序员文章站 2022-07-14 19:27:28
...

 原链接地址:https://blog.csdn.net/merrylilili/article/details/53465495

import java.util.regex.Pattern;

public class test {
    
  public static void main(String[] args) {
      Pattern p = Pattern.compile("^((13[0-9])|(15[^4,\\D])|(18[0-9]))\\d{8}$");
      //返回Boolean
      System.out.println(p.matcher("18311346711").matches());
  }
 
}

 

相关标签: 正则匹配