in reply to Re^4: csv to hash table
in thread csv to hash table

Maybe you have duplicate keys?

... my $key= shift @array; if( $hash{ $key }) { warn "Duplicate key '$key'"; }; $hash{ $key }= \@array; ...