0
votes
Perl Regex Match and Removal
Iterate over each line in the file, and skip the line if it matches the pattern:
my $fh = new FileHandle 'filename'
or die "Failed to open file - $!";
while (my $line = $fh->getline …
9
votes
Why doesn’t this Perl regex work?
You can use \b for word boundaries and \w for word characters and also, the /i modifier for case insensitivity is cleaner than using [fF] etc.
Something like:
if ($st =~ m{\b fre …
