Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^2: File Searching

by blazar (Canon)
on Sep 14, 2007 at 13:04 UTC ( [id://639001]=note: print w/replies, xml ) Need Help??


in reply to Re: File Searching
in thread File Searching

Start by reading the IP list into a hash.

If he can trust the "format" of his lines enough, then along with others who partecipated to this thread I would suggest going with split - and I hardly see a risk of "messing up things" if he can not.

Also, we recommend all the time not to slurp a whole file in at a time if not for a good reason, but perhaps in this case there's no reason not to:

my %text_for = map { chomp; split /\s*\|\s*/, $_, 2 } <$iplist>;
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...

Of course in that case one couldn't go with the simple map solution. I would do:

while (<$iplist>) { chomp; my ($k,$v) = split /\s*\|\s*/, $_, 2; push @{ $text_for{$k} }, $v; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://639001]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-26 06:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found