Using keys function with hash reference variable : Hash Reference « Hash « Perl






Using keys function with hash reference variable

   


#!/usr/bin/perl

use strict;
use warnings;

my %hash = ( A => "AA",
             B => "BB",
             C => "CC",
             D => "DD",
             E => "EE" );

my $hashReference = \%hash;

foreach ( keys( %$hashReference ) ) {
   print( "The $_ goes $hashReference->{ $_ }.\n" );
}

   
    
    
  








Related examples in the same category

1.Using references to a hash.
2.Hash References
3.Dereferencing hash
4.Anonymous Hash References
5.Get hash value by using the hash reference
6.Get key value pair through hash reference
7.Reference for hash
8.Hard References-Pointers
9.Using -> opertor with hash reference variable
10.Using each function with hash reference