I need to modify some values in some columns of a CSV and after modifying them I need to copy them to a new CSV. For the first column, I do this:
my_csv = CSV.open('MyCSV.csv')
first_column = my_csv.map(&:first)
#do something with them
So, how do I access the other columns since there is no &:second
or &:third
?