Module csv

Module csv 

Source
Expand description

CSV Reader

Structs§

CSVIterator
The CSV Iterator tool
CSVReader
CSV Reader
CSVReaderOptions
User defined options on how to parse the CSV file

Functions§

parse_csv_as_btree
Parse CSV data into a BTreeMap record where both the keys and values are strings
parse_csv_as_record
Parse CSV data into a record the source is the source of the CSV data the delimiter is the character used to separate fields the line_delimiter is the character used to separate lines returns an object with key-value pairs whose keys and values are both strings
parse_csv_line
Parses a line of a CSV file into a vector of values split by the delimiter. Handles quoted values that contain the delimiter.