in reply to Re^2: read hash table from a subroutine or retrieve previously stored hash table from a file
in thread read hash table from a subroutine or retrieve previously stored hash table from a file
$hash{$key_CSV} = \@array_CSV;
Is causing your most immediate problem. You are storing the reference to the array in your hash elements. So when you print out the hash elements, you are getting a reference to an array.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: read hash table from a subroutine or retrieve previously stored hash table from a file
by waytoperl (Beadle) on Nov 20, 2013 at 02:09 UTC | |
by marinersk (Priest) on Nov 20, 2013 at 09:01 UTC | |
by marinersk (Priest) on Nov 23, 2013 at 14:43 UTC |