I've come across a situation where I'd like to split a string at commas - pretty simple using split. BUT I don't want to split the string at commas that are between two double quotes. For instance, if I have the string:
Is there an easy way to do this with regular expressions? Or will I have to write a function to manually read through the string and split it?