Registry / serialization / fast-cpp-csv-parser

fast-cpp-csv-parser

JSON →
library2021-01-03vcpkgunverified

A small, easy-to-use and fast header-only library for reading comma separated value (CSV) files

vcpkg install fast-cpp-csv-parser
INSTALL
IMPORT
SIG · FAST-CPP-CSV-PARSE
F
fast-cpp-csv-parser
serializationcppv2021-01-03
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

csv.h
#include <csv.h>

Read CSV file with header parsing

#include "csv.h" #include <iostream> int main() { io::CSVReader<3> in("data.csv"); in.read_header(io::ignore_extra_column, "name", "age", "city"); std::string name, city; int age; while (in.read_row(name, age, city)) { std::cout << name << " " << age << " " << city << "\n"; } return 0; }
Debug
Known issues

No known issues recorded.

Upgrade
Version history
2021-01-03latest on vcpkg
Audit
Dependencies

No dependency data recorded yet.

Agent activity
2 hits · last 30 days
node
2
Resources

No resource links recorded.

fast-cpp-csv-parser — pip install fast-cpp-csv-parser · libregistry