Search code examples
perlhashref

How to set a list of scalars from a perl hash ref?


How do I set a list of scalars from a perl hash?

use strict;
my $my_hash = { field1=>'val1', field2=>'val2', field3=>'val3', };
my ($field1,$field2,$field3) = %{$my_hash}{qw(field1 field2 field3)};

print "field1=$field1\nfield2=$field2\nfield3=$field3\n";

Solution

  • You're looking for a hash slice which in your case would look like this:

    my ($field1,$field2,$field3) = @{$my_hash}{qw(field1 field2 field3)};
    

    or like this:

    my ($field1,$field2,$field3) = @$my_hash{qw(field1 field2 field3)};
    

    If we simplify things so that you're working with a straight hash rather than hash-ref, we can remove some of the noise and the syntax will look a bit clearer:

    my %my_hash = ( field1=>'val1', field2=>'val2', field3=>'val3' );
    my ($field1, $field2, $field3) = @my_hash{  qw(field1 field2 field3)  };
    # we want an array/list ---------^       ^  ^
    # but my_hash is a hash -----------------/  |
    # and we want these keys (in this order) ---/
    # so we use a qw()-array
    

    Then we can get to your $my_hash hash-ref version by replacing the hash with a hash-ref in the usual way.