index method error removed
This commit is contained in:
+3
-1
@@ -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 {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user