验证一个手机号是否符合正确的格式,如果正确,欢迎此用户来电,如果不正确,请用户重新输入。
import java.util.Scanner;
public class Test2 {
public static void main(String[] args) {
Scanner next = new Scanner(System.in);
// 定义一个格式标准;
String regex = "[1][3,5,7,8][0-9]{9}";
while (true) {
System.out.println("请输入手机号:");
String shuRu = next.nextLine();
if (shuRu.matches(regex) == true) {
System.out.println("欢迎此用户来电:" + shuRu);
break;
} else
System.out.println("您输入有误!");
}
}
}
|
|