How do you search through a CSV file in C++, I've tried looking at the MSDN website but most of the code is in C and about import and export which is not what I need.
the CSV file has 2 columns, the first is a number and the second has text in it
1,big item
2,thing
3,example
4,and so on
There are 21760 rows which the program would have to go through, they are all ordered by number but some numbers are skipped (the last row has a number of 366760 but is only row 21760).
How would I go about searching through this?