'Extracting from CSV file knowing row and column number on command line
I have a CSV file and I want to extract the element in the first row and 3rd column. How might I go about doing this?
Solution 1:[1]
I would load the CSV in a matrix and then take the relevant row/column; of course, you could ignore the non-relevant element while loading the CSV. How to do the aforementioned has already been answered e.g. How can I read and parse CSV files in C++?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | Ringo_00 |