alanhauxwell wrote:
I thought of using the split function to split the line at commas, but I also thought that whould be a problem with embedded commas. If thats the case I'm replacing one problem with another.
You will probably need to parse the string that you read in... a , followed by " is end of field end of line is end of field or some such thing... Hopefully, you will never get a comma and a double-quote adjacent to each other in your data ;) Hope this helps