class Test5
{
public static void main(String[] args)
{
String regex="1[3458]\\d{4}(\\d)\\1{4}";
System.out.print("输入要检验的手机号码:");
Scanner sc=new Scanner(System.in); //接收键盘录入的电话号码,简单尝试IO流
//调用字符串的matches方法,并将boolean型结果赋给变量b
System.out.println("您输入的是"+sc.matches(regex)+"符合要求的电话号码"); //说matches那不对,但是我不懂
}
}
|