csv-conduit-0.3.0.3: A flexible, fast, conduit-based CSV parser library for Haskell.
Data.CSV.Conduit.Parser.Text
Description
This module exports the underlying Attoparsec row parser. This is helpful if you want to do some ad-hoc CSV string parsing.
Synopsis
parseCSV :: CSVSettings -> Text -> Either String [Row Text]Source
Try to parse given string as CSV
parseRow :: CSVSettings -> Text -> Either String (Maybe (Row Text))Source
Try to parse given string as 'Row Text'
row :: CSVSettings -> Parser (Maybe (Row Text))Source
Parse a CSV row
csv :: CSVSettings -> Parser [Row Text]Source
Parse CSV