I have a simple 3 column csv file and i need to exctract only the information from the first column. I was thinking of regular expressions, but i am hoping there is an easier mo
You can read line by line and use the split method to split the line you have read into colums and keep the column you want. Here is a simple example on how to use the split method.