What is the best way to read in a tab delimited file in C++ and store each line as a record? I have been looking for an open source library to help with this, but have been unsuccessful so it looks like I will have to write my own.
|
|
|
|
|
|
|
This will get you started. It doesn't do any checking that each row has the same number of fields, allow for escaping |
||
|
|
|
|
There is no problem in using iostreams - you could read each line with getline into string, and then use stringstream on that string to iterate over fields. |
|||
|
|
|
|
There are a few libraries listed in wikipedia's article CSV_application_support. |
||
|
|
