What is an easy way of parsing a line of comma separated double quoted strings into an array of strings? I have some CSV files with multiple headers lines. In Julia 0.2.1 I did it this way.
eval(parse("cols = [" * cols[1:end-2] * "]")) # -2 to avoid the \r\n
eval doesn't appear to exist in Julia 0.3. I could parse it all in a loop
with a few find statements but I feel there must be a better way.
