0
我試圖獲得一個程序,它使用掃描器方法來檢查無效輸入,例如數字和特殊字符(即!@£$%^),並且只要輸入了錯誤即可打印出來。我嘗試使用matches()方法修復它,但它仍然打印出我輸入的所有內容! (即使有特殊字符和數字)在Java(Scanner)中驗證用戶輸入?
private static void input(String s)
{
Scanner userInput = new Scanner(System.in);
String words;
System.out.println("Enter your words: ");
words = userInput.nextLine();
if (words.matches("[^a-zA-Z0-9 ]"))
{
System.out.println("Error, no number input or special character input please: ");
}
else
{
System.out.println(words);
}
}
並將一個'!'添加到布爾子句中(僅在不需要符號時才輸出錯誤消息)。 –
@AndrewLogvinov再次看到他的代碼。 –
我明白了!謝謝。 – Adz