in reply to Match two files using regex
You declare my $value inside the loop, so that variable will cease to exist once the loop exits. You need to move your test inside the loop, and don't re-declare the variable. That's the first problem I see.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Match two files using regex
by chemshifts (Initiate) on Jun 02, 2015 at 19:35 UTC | |
by GotToBTru (Prior) on Jun 02, 2015 at 19:53 UTC |