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;

Replies are listed 'Best First'.
Re^4: Comparing string to array elements
by R56 (Sexton) on Jan 13, 2017 at 14:58 UTC

    Added it, thanks!