Delimited_parsing
contains parsers for three common file formats:
module Character_separated_without_quoting : sig ... end
Character_separated_without_quoting
parses fields separated by a character, where
fields may contain escaped characters (e,g, \n
) but fields may not be quoted (e.g.,
"foo bar"
).
module Csv : sig ... end
Csv
parses character-separated values where fields may be quoted and quotation
marks within quoted fields are escaped with another quotation mark, MSExcel-style.
module Replace_deprecated_csv : sig ... end
Replace_deprecated_csv
is a drop-in replacement for existing users of
Async_extended.Delimited
. It is faster, tested, and supported.
module Header : sig ... end
module Row : sig ... end
module Deprecated : sig ... end
module Deprecated_intf : sig ... end
module Deprecated_csv : sig ... end