Help for this page

Select Code to Download


  1. or download this
    my $switch = 'quick';
    my @array = qw(the quick fox jumped over the lazy dog);
    my %matches = map {$_,1} @array;
    my $match = exists $matches{ $switch } ? 1 : 0;
    print $match;
    
  2. or download this
    my $match = grep { /$switch/ } @array;