Questions about this topic? Sign up to ask in the talk tab.

Perl/Basics/Hashes/Helper Functions/Each

From NetSec
Jump to: navigation, search

"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>