ゴールデン、スペシャル、ノーマルの 3 つのカテゴリの電話番号があります。私がやろうとしているのは、電話番号のユーザーキーが、電話番号がどのカテゴリに属しているかを自動的に判断することです。ゴールデン カテゴリ番号の一例を挙げましょう: AA001234 (AA は、11、22、33 などの同じ番号を持つ 2 桁を表します)。ここで私が得たもの
public static void main(String[] args) {
Scanner userinput = new Scanner(System.in);
System.out.println("Enter Telephone Number");
String nophone = userinput.next();
String Golden = "(\\d{2})002345"; // <-- how to write the code if the user
//enter the same digit for the first 2 number, it will belong to Golden category?
String Special1 = "12345678|23456789|98765432|87654321|76543210";
if (nophone.matches(Golden)) {
System.out.println("Golden");
}
else if (nophone.matches(Special1)) {
System.out.println("Special 1");
}
else {
System.out.println("Normal");
}
}