Assuming the lines are in order, as shown above...
open(INPA, $inpa) || die "Can't open $inpa";
open(INPB, $inpb) || die "Can't open $inpb";
my $a = <INPA>; chomp($a);
my $b = <INPB>;
while ($a && $b) {
$b =~ /^(\d+) /;
if ($a < $1) {
$a = <INPA>; chomp($a);
}
elsif ($a == $1) {
print $b;
$a = <INPA>; chomp($a);
$b = <INPB>;
}
else {
$b = <INPB>;
}
}
close(INPA);
close(INPB);
The advantage of this code is it's simple and easy to edit for other formats by changing the regular expression (currently set for one or more digits followed by a space) and comparisons (change to lt, eq, gt for string keys). It also doesn't require huge arrays or hashes.
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.