Global symbol "..." requires explicit package name is telling you that ... is undefined. For $gen that is because it should be @gen. For the others you need a
my ...;in each case.
use List::Compare; use strict; open (GEN, "general.txt")||die("general.txt File cannot open\n"); open (SEA, "search.txt")||die("search.txt File cannot open\n"); my @gen=<GEN>; my @sea=<SEA>; my @result; my @final; for $a (@gen) { @result = grep/^\Q$a\E$/, @sea; push (@final , @result); } open(OUT, ">textCompare3Output.txt")||die("cannot create\n"); print OUT "\nSearch string that matches against general data:\t@final" +;
In reply to Re: error message txtFile comparison with output in another txtfile
by GrandFather
in thread error message txtFile comparison with output in another txtfile
by juergenkemeter
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |