What is the best way to parse a CSV string to a list? For example, how do I parse: 'AAA,"BBBB,CCCC,DDDD",EEE,FFF,GGG' to get: ['AAA','BBB,CCC,DDDD','EEE','FFF','GGG’] Thanks, Bruce