elm-csv icon indicating copy to clipboard operation
elm-csv copied to clipboard

Decode CSV in the most boring way possible.

Results 4 elm-csv issues
Sort by recently updated
recently updated
newest added

There is a missing space after the field name when converting `FieldNotProvided` error to string in https://github.com/BrianHicks/elm-csv/blob/main/src/Csv/Decode.elm#L720 which results in errors like: > There was a problem in the header:...

Use case: I'dl ike providing my users a way to "explore" a CSV with "headers". So from a CSV which looks like: ``` name,first name,age sheep,seb,18 hicks,brian,21 ``` I'd like...

I'm looking for a easy way to parse just the at runtime provided fields. So something like: ```elm parseFields : { fieldSeparator : Char } -> List String -> String...

I'd appreciate if there was a decoder for the current row number. Is there anything wrong with that? My suggestion would be: ```elm rowNumber: Decoder Int rowNumber = Decoder (\_...