index method error removed

This commit is contained in:
Andrin Fassbind 2021-11-12 11:19:10 +01:00
parent a7c1e411d0
commit 6b7c4fb736
1 changed files with 19 additions and 17 deletions

View File

@ -181,9 +181,10 @@ public class Text {
String firstLetter;
String restLetters;
for (int i = 0; i < text.size(); i++) {
String[] words = text.get(i).trim().toLowerCase().split("[ :;.,!?><+*}{)('/\n]+");
String[] words = text.get(i).trim().toLowerCase().split("[. ,:?!\"'-]+");
for (String word : words) {
//Words get formatted consistently
if(word.length()>0){
counter = 1;
firstLetter = word.substring(0, 1);
restLetters = word.substring(1);
@ -206,4 +207,5 @@ public class Text {
}
}
}
}
}