Help for this page

Select Code to Download


  1. or download this
    if( grep{$test eq $_} @array ){
    # 
    }
    
  2. or download this
    foreach (@array) {
      next unless $_ eq $test;
    ...
      # ...
       last;
    }
    
  3. or download this
    my %test
    @test{@array} = ();
    ...
       }
    }