(1).方式一,最常用的方法,但是有坑,因为遇到中文就判断错误
String str = "Hello World";
if (Character.isLetter(str.charAt(0))) {
System.out.println("第一个字符是字母");
} else {
System.out.println("第一个字符不是字母");
}
(2).方式二,正则性能差
String str = "你好,Hello World";
if (str.matches("^[a-zA-Z].*")) {
System.out.println("第一个字符是字母");
} else {
System.out.println("第一个字符不是字母");
}
(3).方式三,最完美
String str = "你好,Hello World";
if (Character.isAlphabetic(str.charAt(0))) {
System.out.println("第一个字符是字母");
} else {
System.out.println("第一个字符不是字母");
}