I rewrote the code to make it work as described in your post.
replace_with_matches.pl
#!/usr/bin/perl
use warnings;
use strict;
my $source = shift @ARGV;
my $destination = shift @ARGV;
my $matchfile = shift @ARGV;
my @matches = ();
open (MF, '<', $matchfile) or die $!;
while (<MF>)
{
push @matches, $_;
}
close MF;
# have a list of all matches
my @input = ();
open (IN, '<', $source) or die $!;
while (<IN>)
{
push @input, $_;
}
close (IN);
# have all input lines in an array
my @output = ();
NEXT_INPUT_LINE:
for my $input_line (@input)
{
# check every input line 1 time
NEXT_MATCH_PAIR:
for my $match_pair (@matches)
{
my @DATA = split (/\s/, $match_pair);
my $matcher = $DATA[0];
my $replacer = $DATA[1];
# check all match pairs against 1 input line
if ($input_line =~ /^$matcher/)
{
# make replacement
$input_line =~ s/legend/$replacer/;
push @output, $input_line;
# jump to next input line
next NEXT_INPUT_LINE;
}
}
# if it gets here, there was no replacement
# copy input line to output
push @output, $input_line;
}
# have all replaced output in @output
# write @output to $destination
open (OUT, '>', $destination) or die $!;
for my $output_line (@output)
{
print OUT $output_line;
}
close OUT;
Sample input files:
source.txt
lancer is a legend asdf
asdfwerg asdf wergdfv legend
pieces of trash
line 4 is cool and makes no sense
time for legends
time for christmas
jesus is a legend
matches.txt
l jerk
j myth
Sample output:
result.txt
lancer is a jerk asdf
asdfwerg asdf wergdfv legend
pieces of trash
line 4 is cool and makes no sense
time for legends
time for christmas
jesus is a myth
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|