http://www.perlmonks.org?node_id=1031972

quicoju has asked for the wisdom of the Perl Monks concerning the following question:

Monks,

I'm trying to check that a number of elements exist in a Hashref. Instead of checking for one element at a time, I'd like to do the check them all in one pass.

The following code is what I've tried so far, but I'm getting some unexpected behavior. It looks that it only check s for the last element in the slice

sub add_ingredient { my $args = shift; if ( @{$args}{ qw/name unit quantity/ } ) { print "All elements exist\n" } else { print "Hey some information is missing \n"; } } add_ingredient({ name => "carrot", unit => "lb", }); #output: Hey some information is missing add_ingredient({ quantity => 1.0, }); #output: All elements exist

Is this the correct way to check for element existence?

Please enlighten me ...Thanks

Replies are listed 'Best First'.
Re: Check for existence of elements in a Hashref
by LanX (Saint) on May 03, 2013 at 23:36 UTC
    > Is this the correct way to check for element existence?

    the correct way is to use exists on each element.

    But if you wanna check multiple keys in one run, why not using keys to get them?

    update

    you could try this to apply hash-slices:

    DB<230> sub tst{ my $href=shift; my %needed; @needed{qw/name unit quantity/}=(); delete @needed{ keys %$href }; print "Elements missing; ", keys %needed if %needed; } DB<231> tst({name=>1,bla=>2,unit=>3,quantity=>4}) DB<232> tst({name=>1,bla=>2,unit=>3}) Elements missing; quantity DB<233> tst({bla=>2,unit=>3}) Elements missing; quantityname

    but this is certainly easier understood and maintained:

    DB<234> sub tst{ my $href=shift; my @missing = grep { ! exists $href->{$_} } qw/name unit +quantity/; print "Elements missing: @missing" if @missing; } DB<235> tst({name=>1,bla=>2,unit=>3,quantity=>4}) DB<236> tst({name=>1,bla=>2,unit=>3}) Elements missing: quantity

    Cheers Rolf

    ( addicted to the Perl Programming Language)

      Great answer, thanks!