Hi,
I need to do massive regexp search and replace. For a given text file, I need to go through each line of this file and apply each of the (different) replacement expressions listed in a Perl script (or a separate data file). The whole thing is not too complex to implement. The problem is my replacement expressions may amount to thousands, in which case all several implementations I have tried are extremely slow.
Here is a sample implementation of mine:
open(IN, "<samplein.txt");
my @INPUT = <IN>;
close (IN);
open (OUT,">sampleout.txt");
foreach $INline (@INPUT) {
foreach my $Rpatt (@Patts) {
(my $Source, my $Target) = split(/\t/, $Rpatt);
if ($Source && $Target) {
$Source = $Source;
$Target = "\"$Target\"";
$INline =~ s/$Source/$Target/gee);
}
}
chomp $INline;
print OUT $INline;
}
close (OUT);
This implementation does the job, but when the list of replacement patterns (@Patts) is big (several thousands), the replacement takes ages.
Can anyone help me find an efficient implementation.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.