Help for this page

Select Code to Download


  1. or download this
    # Validate a data set
    ITEM: foreach my $item (@data) {
    ...
        }
        # Do something useful with this item.
    }
    
  2. or download this
    if (3 != grep {exists $item->{$_}} qw(foo bar baz)) {
        warn ....; # but your warning can't be as specific.
        next;
    }