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

Difference between revisions of "Perl/Basics/Hashes/Helper Functions/Keys"

From NetSec
Jump to: navigation, search
(Created page with "This uses a foreach() loop and casting. We can isolate $key=>$value pairs the same as above using keys in stead of each: {{code|text=<syntaxhighlig...")
 
 
(No difference)

Latest revision as of 01:39, 19 July 2012

This uses a foreach() loop and casting. We can isolate $key=>$value pairs the same as above using keys in stead of each:

<syntaxhighlight lang="perl">foreach my $key (@{sort keys %user}) { print "Key: $key, Value: ". $user{$key} ."\n"; };</syntaxhighlight>