![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
Re: Get hash value with the lowest keyby Elgon (Curate) |
on Jun 14, 2004 at 09:32 UTC ( #366456=note: print w/replies, xml ) | Need Help?? |
Hi Kiat,
Because of the way that hashes are stored in memory, the order of keys returned is not guaranteed to be ordered or even consistent. If you want to get the lowest key, then something like... my @ordered_list = sort keys %myhash; ...will put the lowest key (sorted asciibetically) into the $ordered_list[0] element. See this and this for futher info on sort and keys. Hope this helps. Update: Or you could use Foxcub's far more elegant solution!
"Stercus! Dixit Pooh. Eeyore, missilis lux navigii heffalumporum iaculas. Piglet, mecum ad cellae migratae secundae concurras."
In Section
Seekers of Perl Wisdom
|
|