0

我对 Java 还是很陌生,一直在尝试编写一些代码,因此它会检查收到的输入只是字母,因此不能输入特殊字符或数字。

到目前为止,我已经走到了这一步

    System.out.println("Please enter your first name");
    while (!scanner.hasNext("a-z")
    {
    System.out.println("This is not in letters only");
    scanner.nextLine();
    }
    String firstname = scanner.nextLine();
       int a = firstname.charAt(0);

这显然不起作用,因为它只是定义输入只能包含字符 az,我希望有一种方法来告诉它它只能包含字母但还没有弄清楚如何。

任何帮助都将不胜感激,即使是指向我可以阅读正确命令并自己弄清楚的链接:)

谢谢

4

3 回答 3

1

您可以使用以下两种方法中的任何一种:

public boolean isAlpha(String name) {
    char[] chars = name.toCharArray();

    for (char c : chars) {
        if(!Character.isLetter(c)) {
            return false;
        }
    }

    return true;
}

public boolean isAlpha(String name) {
    return name.matches("[a-zA-Z]+");
}
于 2013-10-20T10:26:08.880 回答
0

你可以使用一个简单的正则表达式

System.out.println("Please enter your first name");
String firstname = scanner.nextLine(); // Read the first name 
while (!firstname.matches("[a-zA-Z]+")) { // Check if it has anything other than alphabets
    System.out.println("This is not in letters only");
    firstname = scanner.nextLine(); // if not, ask the user to enter new first name
}
int a = firstname.charAt(0); // once done, use this as you wish
于 2013-10-20T10:23:05.103 回答
0
while (scanner.hasNext()) {
    String word = scanner.next();
    for (int i = 0; i < word.length; i++) {
        if (!Character.isLetter(word.charAt(i))) {
            // do something
        }
    }
}
于 2013-10-20T10:25:10.997 回答