This commit is contained in:
2020-07-03 16:48:35 -05:00
parent 2d0a5f2b5f
commit c93cdc5109

View File

@@ -14,7 +14,7 @@ public class RandomWordFileReader {
public RandomWordFileReader(String filename){
try(BufferedReader reader = Files.newBufferedReader(Path.of(filename));){
//This should use flatMap to make a string array from the line, and then turn the elements of that array into a stream, which goes to forEach
reader.lines().flatMap(line -> Arrays.stream(line.split("[\\s\\W_0]+"))).forEach(word -> words.add(word.toLowerCase()));
reader.lines().flatMap(line -> Arrays.stream(line.split("[\\s\\W_]+"))).forEach(word -> words.add(word.toLowerCase()));
}catch (IOException ex){
System.err.println(ex);
}