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

Re: A looping and format question...

by kilinrax (Deacon)
on Dec 13, 2000 at 19:48 UTC ( [id://46429]=note: print w/replies, xml ) Need Help??


in reply to A looping and format question...

Well, you're code's pretty rough, but i'll try and pinpoint the immediate problem:
write STDOUT if defined($registrant and $admin and $tech and $billing +and $names[2] and $expires);
If the above test evaluates to true, you should also exit the OUTER loop, thus;
if defined($registrant and $admin and $tech and $billing and $names[2] + and $expires){ write STDOUT; last OUTER; }
Otherwise the loop will keep on recurring and print your results several times.

I would also suggest that a much better way of doing this would be to take the test out of the loop entirely.
Also, you may want to take a look at the Net::Whois module.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-23 14:13 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found