Start by reading the IP list into a hash.
open my $iplist_fh, '<', 'iplist.txt'
or die "Can't read iplist.txt: $!\n";
my %text_for;
while ( <$iplist> ) {
chomp;
if ( m{ \A # line start
( \d{1,3} (?: \. \d{1,3} ){3} ) # IP address
\s+ \| \s+ # separator
( .* ) # text
\z # line end
}xms ) {
$text_for{$1} = $2;
}
}
close $iplist_fh or die "Can't close??: $!\n";
Note that this assumes each IP has only one entry in your list. If that's not the case, there's another solution for that...
Once you have your list in memory, you can get the text of any IP out of it pretty easily.
my @ips_of_interest = qw( 127.0.0.1 10.0.1.51 );
foreach my $ip ( @ips_of_interest ) {
print "IP is $ip\n";
print "Text is $text_for{$ip}\n";
}
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.