Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Reg Ex to find IP address in range

by Aristotle (Chancellor)
on Aug 28, 2003 at 17:50 UTC ( [id://287469]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Test::More 'no_plan';
    ...
    ok 7 - 10.10
    ok 8 - 0.0
    1..8
    
  2. or download this
    my $rx = qr/\A
        (?: [0-4]\d? | 5?[0-5] | [6-9] ) \.
        (?: [0-4]\d? | 5?[0-5] | [6-9]  )
    \z/x;
    
  3. or download this
        '62.6' => 0,
        '9.97' => 0,
    ...
        '1.49' => 1,
         '6.7' => 1,
        '06.7' => 1,
    

Log In?
Username:
Password:

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

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

    No recent polls found