Skip to content

Instantly share code, notes, and snippets.

@xhochy
Created January 29, 2014 16:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xhochy/8692157 to your computer and use it in GitHub Desktop.
Save xhochy/8692157 to your computer and use it in GitHub Desktop.
% cat test.csv
1,"text, text",2,3
% julia
julia> file = open("test.csv", "r");
julia> readcsv(file)
1x5 Array{Any,2}:
1.0 "\"text" " text\"" 2.0 3.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment