我正在使用isLetter()和charAt()來查看str中的字符是否是字母。 此方法的用途是查找字符串中至少包含最小字長的字數。我不想讓它算數字以外的任何東西。 (im java noob)Java確定字符串中的每個字符是否是字母
public static int wordCount(String str, int minLength) {
//Method that counts words.
int count = 0;
boolean isLetter = false;
for (int i = 0, wordLength = 0; i < str.length() + 1; i++) {
isLetter = Character.isLetter(str.charAt(i)); //Why doesn't this line work?
if (i == str.length() || str.charAt(i) == ' ' || isLetter==false) {
if (wordLength >= minLength) {
count++;
}
wordLength = 0;
} else {
wordLength++;
}
}
return count;
}
isLetter檢查不起作用嗎?它用在一個複合謂詞中,它與一堆其他條件進行或運算...... –
它說「線程中的異常」主「java.lang.StringIndexOutOfBoundsException:字符串索引超出範圍:4」 – Seiji