I have the following (sample data)
name,phone,"addres 1, address 2",foo,bar
i have come across a kind of similar problem (with solution) here: Python Regex - Find numbers with comma in string
what i want is to do a split and have the array look like
['name', 'phone', 'addres 1, address 2' ,'foo', 'bar']
im not brilliant with regex's so was hoping someone can help