#@words is a bunch of words , $line is the line to search $found = 1; foreach (@words) { next if(($line =~ /$_/i) || ($_ eq "")); $found = 0; } if($found == 1){ #success }