Help for this page

Select Code to Download


  1. or download this
    my %stop;
    @stop{qw(first second third)} = ();
    next if exists $stop{$field};
    
  2. or download this
    next if grep $field eq $_, qw(first second third);