http://qs1969.pair.com?node_id=1179416


in reply to Re^2: Comparing string to array elements
in thread Comparing string to array elements

Tip #3 from the Basic debugging checklist: chomp

open (IN, 'C:\terms.txt'); my @terms = <IN>; close IN; chomp @terms;