How does one convert something like this (assuming I'm using a Buffered Reader to read in the info?):
0, blah, hi\n
1, bluh, test
To this:
String[] testArray:
0, blah, hi, 1, bluh, test
If that makes any sense? Basically removing the commas and newlines and inserting each different word into its own element.