Questions about this topic? Sign up to ask in the talk tab.
Perl/Basics/Hashes/Helper Functions/Each
From NetSec
"while my each" can be used to isolate $key => $value pairs from a hash as follows with our %user hash:
<syntaxhighlight lang="perl">while(my($key,$value) = each(%user)) { print "Key: $key, Value: $value\n"; };</syntaxhighlight> |