I am trying to extract data that have been separated into columns in my csv using Tie::CSV_File, I am able to extract from all columns except one which is actually a sentence so when I try to get $date[4][4] I get just the first word from the sentence, how can I extract the whole sentence?
Code:
tie my @data, 'Tie::CSV_File', $file ,WHITESPACE_SEPARATED;