The keys operator returns a list of all the key names within a hash. : keys « Hash « Perl






The keys operator returns a list of all the key names within a hash.

    

#!/usr/bin/perl -w

# Associative array or hash keys.
$hash{"Name"} = "G ";
$hash{"Address"} = "1 Penn.";
$hash{"City"} = "W";

@key_names = keys(%hash);

print "Key names are: @key_names\n\n";

# Now, access each element from the list.
foreach $key (@key_names) {
     print "$key holds $hash{$key}\n";
}

   
    
    
    
  








Related examples in the same category

1.Keys function is used to get all keys in a hash
2.Obtain the list of hashKeys and display each key-value pair
3.Obtain the list of keys and display each key-value pair
4.Hash (Associative Array) Functions: The keys function returns, in random order, the keys of a hash.
5.Hash map creation