while my $term (<F1>) {
That is a syntax error. Perhaps you meant:
while ( my $term = <F1> ) {
foreach my $source (<F2>) {
Why would you read in the whole file instead of just reading one line at a time? Perhaps you meant:
while ( my $source = <F2> ) {
In reply to Re^2: Filtering Source Text File with 2nd Text File of Terms
by jwkrahn
in thread Filtering Source Text File with 2nd Text File of Terms
by Loops303
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |