I need to produce a merged list. List1 contains all of List2 but in a different format. I have used regex to cull out what I need, but its an impractical approach as im iterating over List2 again and again. So, is there a more elegant solution to do this? Im fairly stumped.
#!/usr/bin/perl
use strict;
use warnings;
#
my @CS_CHECKS = ( '00012345', 'D123470', '0000123450', '0000023456', '
+50000123990' );
my @B_CHECKS = ( '1234', '12345', '123990', '12399' );
my %seen;
for my $cn ( @CS_CHECKS )
{
for my $bn ( @B_CHECKS )
{
if ( $cn =~ /^(0|5|6)0+\Q$bn\E$/ )
{
print "$bn = $cn\n";
}
}
}
Ted
--
"That which we persist in doing becomes easier, not that the task itself has become easier, but that our ability to perform it has improved."
--Ralph Waldo Emerson
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.