in reply to Re^3: Question about text::csv_xs
in thread Question about text::csv_xs
and what I get is the same result for every key so maybe I am doing that wrong. Anyways thanks for the help in advance.foreach $hashkey (keys %hash){ print "$hashkey has $hash{$hashkey}->[0] in first array element.\n" +; }
Update: Ok the data looks like "lastname","firstname","date". What happens is that the %hash ends up having the keys tied to "lastname" so what is happening is when I print out the hash to the screen I get like
Smith has Johnson in first array element.
Johnson has Johnson in first array element.
Laskey has Johnson in first array element.
and so on.
|
|---|