Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: IP Address Sanity

by FamousLongAgo (Friar)
on Nov 07, 2002 at 22:42 UTC ( [id://211277]=note: print w/replies, xml ) Need Help??


in reply to IP Address Sanity

These pass as valid IP addresses:
10. 22. 109 934324 23832 23.104 200. 12.21.3 0.^^&7".34.55-1
Try this:
while ( <DATA> ) { chomp; print $_, ": ", check_ip( $_ ), "\n"; } sub check_ip { my ( $ip ) = @_; return "Wrong format" unless $ip =~ /^(\d{1,3}\.){3}\d{1,3}$/; return "Illegal value" if grep { $_ > 255 } split /\./, $ip; return "Weird zeroes" if grep { /^0[0-9]/ } split /\./, $ip; return "OK" } __DATA__ 0.^^&7".34.55-1 fda.er32.223.1 10.00.120.13 32.294.233.12 -02.35.54.54 41.41.22.50

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (6)
As of 2024-04-18 21:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found