Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/psibi/csv-parser

A CSV Parser in C++ without any bells and whistles
https://github.com/psibi/csv-parser

Last synced: 23 days ago
JSON representation

A CSV Parser in C++ without any bells and whistles

Awesome Lists containing this project

README

        

CSV-Parser in C++
------------------
A CSV Parser in C++ without any bells and whistles.

Usage:
-------


//Create object of csv_parser and pass the filename as the argument.
csv_parser csv("demo.txt");

//For getting values according to row number and column number. Remember it starts from (1,1) and not (0,0)
string value = csv.get_value(3,4);

//For getting a particular row in the CSV file
string line = csv.get_line(3);

//For getting number of fields in a particular row.
int total_fields = csv.fields(csv.get_line(3));

For demo, see the code demo.cpp under examples folder.

License:
---------
GNU General Public License v3 (GPLv3)

Bug Report:
------------
Issue it here: https://github.com/psibi/csv-parser/issues