String.split() regular expression
Regular expression escapes me. I have a line of a CSV file that looks like this:
1,,3,2,45.00,"This & That, LLC",0
I want the string split by commas but the problem with the line above is there's a comma in the name of the company...I obviously don't want the company name split in half...what would the regular expression be that I would provide to the split method to ensure that only commas not found in between double quotes are used to split the string into an array of Strings? is this possible?
Thanks in advance!
Rob

