Suppose I have an array @latin_am=("Ecuador","Mexico");
The actual array contains 10 countries. I want to scan a text file for any line that matches /Ecuador/ or /Mexico/ or
or any other country in the array. What is the most efficient way of accomplishing this?
Thanks very much.