Help for this page

Select Code to Download


  1. or download this
    $line=~/$_/i&&push(@found,$_)for@keywords;
    
  2. or download this
    for (@keywords) {
        next unless $line =~ /$_/i;
        push @found, $_;
    }
    
  3. or download this
    my @found = grep { $line =~ /$_/i } @keywords;