vote up 1 vote down star

I have three hashes named %hash1, %hash2, %hash3. I need to reference each hash by variable and am not sure how to do it.

#!/usr/bin/perl

# Hashes %hash1, %hash2, %hash3 are populated with data.

@hashes = qw(hash1 hash2 hash3);
foreach $hash(@hashes){
    foreach $key(keys $$hash){
          .. Do something with the hash key and value
    }
}

I know this is a fairly simplistic, comparatively noob question so my apologies for that.

flag

2  
Take a look at perldoc perlreftut for a good introduction to references in Perl (how to create them, how to get the values from them, when you might use them). – Telemachus Aug 6 at 19:45
2  
Make sure you read perldoc.perl.org/perlfaq7.html#How-can-I-use-a-va… – Sinan Ünür Aug 6 at 19:52

2 Answers

vote up 15 vote down check

This should work for you.

#!/usr/bin/perl
use strict;
use warnings;

my( %hash1, %hash2, %hash3 );

# ...

# load up %hash1 %hash2 and %hash3

# ...

my @hash_refs = ( \%hash1, \%hash2, \%hash3 );

for my $hash_ref ( @hash_refs ){
  for my $key ( keys %$hash_ref ){
    my $value = $hash_ref->{$key};

    # ...

  }
}

It uses hash references, instead of using symbolic references. It is very easy to get symbolic references wrong, and can be difficult to debug.

This is how you could have used symbolic references, but I would advise against it.

#!/usr/bin/perl
use strict;
use warnings;

# can't use 'my'
our( %hash1, %hash2, %hash3 );

# load up the hashes here

my @hash_names = qw' hash1 hash2 hash3 ';
for my $hash_name ( @hash_names ){
  print STDERR "WARNING: using symbolic references\n";

  # uh oh, we have to turn off the safety net
  no strict 'refs';

  for my $key ( keys %$hash_name ){
    my $value = $hash_name->{$key};

    # that was scary, better turn the safety net back on
    use strict 'refs';

    # ...

  }

  # we also have to turn on the safety net here
  use strict 'refs';

  # ...

}
link|flag
+1 For typing faster than me :) – Swish Aug 6 at 19:29
2  
Many many +1's for not showing the OP how to use symbolic references ;-) perldoc.perl.org/perlfaq7.html#How-can-I-use-a-va… ... Beginners often think they want to have a variable contain the name of a variable. – Sinan Ünür Aug 6 at 19:51
1  
Sorry for adding the scary symbolic references version :-( – Brad Gilbert Aug 6 at 20:03
1  
Although, hopefully, I have shown the trouble with doing that. – Brad Gilbert Aug 6 at 20:09
why is this such a common question? Where is this used|thought to be a good idea? – james2vegas Aug 8 at 2:03
vote up 1 vote down

To reference a hash by a reference you can do it one of two ways.

my $ref_hash = \%hash;

or create an anonymous referenced hash

my $ref_hash = { 
    key => value, 
    key => value
}

Now in order to access this hash you'll need to de-reference the variable or use the arrow syntax.

Example 1 (Arrow syntax)

print $ref_hash->{key};

Example 2

print ${$ref_hash}{key};

I hope that helps.

link|flag
The question was about using symbolic references. – Brad Gilbert Aug 7 at 1:43
@Brad: the question is about getting the job done. I'm sure he'd be happy to use whatever works. :) – brian d foy Aug 7 at 3:40

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.