Help for this page

Select Code to Download


  1. or download this
    my $table = [ [qw(1 2 3)], [qw(a b d)], [qw(A D C)]] ;
    my $search_pattern = { 0=> 'a', 2 => 'c', };
    ...
    }
    
    my @found = grep {findit $_, $search_pattern, } @{$table};