Help for this page

Select Code to Download


  1. or download this
    my @array = qw( a b c d x );
    my $sought = 'a';
    $" = '|-nothing we expect-|';
    print "Found!" if index($" . "@array" . $", $" . $sought . $") > -1;
    
  2. or download this
    my @array = qw( a b c d x );
    my $sought = 'a';
    print "Found!" if grep $_ eq $sought, @array;