Expand description
CSV Reader
Structs§
- CSVIterator
- The CSV Iterator tool
- CSVReader
- CSV Reader
- CSVReader
Options - 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.