![]() |
|
Pathologically Eclectic Rubbish Lister | |
PerlMonks |
Answer: How do I make an array of hashes?by fx (Pilgrim) |
on Dec 19, 2003 at 23:26 UTC ( #315948=categorized answer: print w/replies, xml ) | Need Help?? |
Q&A > Data Structures > How do I make an array of hashes? - Answer contributed by fx
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'};
|
|