I am trying to separate a very large .cvs (255 columns) by using a BufferedReader that grabs each line and stores it in a string.
I'd like to be able to split it by a command and letter. Ex:
1,2,3,5,6
will split into
1 | 2 | 3 | 4 | 5 | 6 | 7
hello,world,good day to you, Sir,test
will split into
hello | world | good day to you, Sir | test
notice how I only separated a comma that follows with an alphanumeric. The commas that precede a space are not separated, instead they are part of a sentence.