That was it.

I switched this:

eval(parse("columns = (" * columnsStr[1:end-2] * ")")) # Convert to a 
string array

to this:

columns = []
begin
    f = [0,findin(columnsStr,','),length(columnsStr)-1]
    columns = Array(ASCIIString,length(f)-1)
    for jj=1:1:length(f)-1
       columns[jj] = columnsStr[f[jj]+2:f[jj+1]-2]
    end
end

I was able to finish the conversion. My next steps will be to convert it to 
Julia 0.3 and DateTime to Dates.

Reply via email to