Given a string like this:
a,\"string, with\",various,\"values, and some\",quoted
What is a good algorithm to split this based on
Python:
import csv reader = csv.reader(open("some.csv")) for row in reader: print row