Help for this page

Select Code to Download


  1. or download this
    for (@array2) {
        for my $pat (@array1) {
    ...
            }
        }
    }
    
  2. or download this
    for my $pat (@array1) {
        push @a3, grep { index($_,$pat) > -1 } @array2;
    }