BrianHicks / elm-csv / Csv.Parser

CSV (and TSV) parsing.

parse : { fieldSeparator : Char } -> String -> Result Problem (List (List String))

Turn a CSV string into a list of rows. Prefer using Csv.Decode.decodeCsv or Csv.Decode.decodeCustom unless you need something unusally custom (and please open an issue if so!)


type Problem
    = SourceEndedWithoutClosingQuote Basics.Int
    | AdditionalCharactersAfterClosingQuote Basics.Int

Something went wrong during parsing! What was it?