当前位置: 代码迷 >> 综合 >> 记不住但实用的正则xx.matches(^\\d{7,11}$);
  详细解决方案

记不住但实用的正则xx.matches(^\\d{7,11}$);

热度:63   发布时间:2023-11-08 11:40:42.0
public static void main(String[] args){String phone = "18312341234";if(!phone.matches("\\d{7,11}")){//xx.matches("^\\d{7,11}$");限制开头结尾System.out.println("报错xxxxxxxxx");}System.out.println("successxxxxxxxxx");
}

 

  相关解决方案