http://www.perlmonks.org?node_id=779641


in reply to How to compare Array values??

If you escape the special characters then you'll be matching against the literal string '$array[0]' instead of the contents of $array[0].

if ($Array1[0] =~ /$Array2[0]/) { print "PASS"; }
--

See the Copyright notice on my home node.

Perl training courses