Hi -- I am trying to use the csv module to parse a column of values containing comma-delimited values with unusual escaping:
AAA, BBB, CCC (some text, right here), DDD I want this to come back as: ["AAA", "BBB", "CCC (some text, right here)", "DDD"] I think this is probably non-standard escaping, as I can't figure out how to structure a csv dialect to handle it correctly. I can probably hack this with regular expressions but I thought I'd check to see if anyone had any quick suggestions for how to do this elegantly first. Thanks! Ramon -- http://mail.python.org/mailman/listinfo/python-list