csv icon indicating copy to clipboard operation
csv copied to clipboard

CSV Decoding and Encoding for Elixir

Results 15 csv issues
Sort by recently updated
recently updated
newest added

CSV.decode! add additional \r\n ``` {:ok, string_device1} = StringIO.open("\"one\ntwo\nthree\"") string_device1 |> IO.stream(:line) |> CSV.decode!() |> Enum.each(&IO.inspect/1) ``` The result is ``` ["one\n\r\ntwo\n\r\nthree"] ``` The expected behaviour is : ``` ["one\ntwo\nthree"]...

bug
help wanted

Idea for a feature: CSV.encode could accept a Keyword list as headers next to a list or true. The keys of that list will be used as the keys for...

help wanted
feature request

Hi ! I'm currently porting ETL ruby code in elixir and I have a problem in some files. I'm on the master branch and I use the `|` as separator....

enhancement

The Decoder should allow to decode cells further into other types than strings. The exact mechanism still needs to be selected.

enhancement
help wanted

**If this is a feature request, why do we need it?** - `escape_formulas` indiscriminately adds `'` to all fields with the `@escape_formula_start` values of `["=", "-", "+", "@"]` which is...