Hi Michael,
I believe you are trying to parse a CSV with many columns. Did you find a solution?
If not, we wrote a DBL class that contains several methods for working with CSV files. Most of the methods are for creating CSV rows, but one of the methods can be used to extract fields from the CSV row one column at a time. You can invoke it in one line, and it returns the leftmost field:
fld = csv.ExtractLeftField(currentCSVRow)
The method updates currentCSVRow so the after the call leftmost field is removed and all the other fields then shift left by one column. So the next time you execute the same call, the variable fld will now contain the value in the second column, etc. It works really well in a FOR loop.
I've tested it in Windows and VMS, but it should work in Linux too. Let me know if you are interested and I can share the code.