次のように文字列をパターン化します。
letters (in here there may be letters, numbers and whitespace)
私はこれを試しましたが、うまくいきません。
Scanner cin = new Scanner(System.in);
String format = "^[a-zA-Z]* ([a-zA-Z_0-9\\s]*)$";
String userInput = cin.nextLine();
if (userInput.matches(format)) {
System.out.println("Correct Patten");
} else {
System.out.println("Incorrect Pattern");
}
前もって感謝します...