Hi, I need to be able to read in a .csv file with a few columns into strings.
e.g.
myFile.csv
Name, surname, age
a, b, 5
b, c, 20
etc
If the file has say 50 rows, i want to perform the particular operation 50 times (i could use a for loop of something for this)
Could someone point me in the right direction to what i need to do to read in text file data into a string.
Many thanks