CSV.jl
CSV.jl copied to clipboard
Can't skip rows with quote
CSV doesn't read any data when skipped rows contain quotes:
julia> CSV.File(IOBuffer("""
1'2"
name
1
2
3
"""), header=2, skipto=2)
0-element CSV.File
This is similar to (fixed) #788, but different: this time I need to skip rows not marked with the comment char.