I'm reading from a txt file, which contains a paragraph, and I'm parsing the words and inserting them into a list; however, I'm inserting spaces also. Somehow, my regex is do not seem to work every time encounters a comma or a dot because it adds a space... if someone could suggest a regex that could fix that? Thanks
public class Exercise225 {
public static void main(String... args) throws FileNotFoundException {
String file = "words.txt";
Scanner inFile = new Scanner(new File(file));
String[] words = null;
String line = "";
List list = new ArrayList();
while (inFile.hasNextLine()) {
line = inFile.nextLine();
words = line.split("[\n|\r|\t| |,|.|)|(|-|\"|!]");
for (int i = 0; i < words.length; i++) {
list.add(words[i].toLowerCase());
}
}
Collections.sort(list);
System.out.println(list.size());
Iterator listItr = list.iterator();
while (listItr.hasNext()) {
System.out.println(listItr.next());
}
inFile.close();
}
}