%searchlist = map { $_ => 1 } @searchlist; open(IN,"test.txt"); while () { chomp; if ( $searchlist{$_} ) {print "Match Found"} }