If the hash has already been created, you can store references to the hash in arrays:
push(@array, \%some_hash);
and then when you pop them off:
$hash_ref = pop(@array);
you'll get a scalar back which can be dereferenced to get at the values of the hash:
$value = $hash_ref->{'key'};
In reply to Re: How do I make an array of hashes?
by fx
in thread How do I make an array of hashes?
by vroom
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |