csv-parser

Crates.iocsv-parser
lib.rscsv-parser
version0.1.1
sourcesrc
created_at2022-02-09 17:36:27.082444
updated_at2022-02-14 14:17:22.574629
descriptionCSV reader/parser, allowing for commas and new lines in quoted text
homepagehttps://github.com/paul-aspinall/csv-parser
repositoryhttps://github.com/paul-aspinall/csv-parser
max_upload_size
id529803
size9,828
(paul-aspinall)

documentation

README

A CSV Parser/Reader (UTF-8 & ASCII only) library for Rust.

Three functions are exposed:

read(filename) This reads a file and returns a Vec of the raw data

parse(buf) This takes a Vec and parses the data as either UTF-8/ASCII into a row/col Vec<Vec>

to_lines(row_cols) This takes a row/col of a Vec<Vec> and returns a Vec with a dynamic column size for all columns

Commit count: 5

cargo fmt