java.lang.StringIndexOutOfBoundsException: String index out of range: 5 at java.lang.String.charAt(String.java:658) at Lab6.DataSentinelWhile3.main(DataSentinelWhile3 で.java:24)
public static void main(String[] args) {
String sentence;
char ch = 'a';
int ind = 0, upperLetter=0, lowerLetter=0, digits=0, punctuation=0;
Scanner input = new Scanner(System.in);
System.out.print("Please enter a sentence (full-stop to terminate):");
sentence = input.nextLine();
while(ch != '.') {
if(ch >= 'a' && ch <= 'z')
lowerLetter++;
else if(ch >= 'A' && ch <= 'Z')
upperLetter++;
else if(ch >= '0' && ch <= '9')
digits++;
else
punctuation++;
ind++; //increase the index of the sentence by 1
ch = sentence.charAt(ind); //extract every character from sentence
}
System.out.print("\n\n*****Lexical Analysis of your Sentence*****" +
"\nLowercase letters: " + lowerLetter +
"\nUppercase letters: " + upperLetter +
"\nDigits: " + digits +
"\nPunctuation symbols: " + (punctuation+1));
input.close();
}