Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What regex can I use to match any valid IP-address represented in dot-decimal notation?

share|improve this question
+1 its a simple and valid question. – Jim Counts Feb 27 '10 at 18:46
2  
Shortest? .* :-) – molf Mar 1 '10 at 10:48

8 Answers

up vote 12 down vote accepted

CPAN is your friend: Regex::Common or Net::IP::Match::Regexp.

share|improve this answer
+1 : CPAN IS always your friend for Perl related question. – David Brunelle Mar 16 '10 at 13:56

Search CPAN. you can find modules such as Data::Validate::IP for your use

share|improve this answer
if($ip=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/ &&(($1<=255  && $2<=255 && $3<=255  &&$4<=255 )))
 {
     print "valid\n";
 }
 else
 {
     print "Invalid\n";
 }
share|improve this answer
3  
dear friend, please recommend Data::Validate::IP from now on. your dear friend. – xxxxxxx Mar 10 '10 at 7:47

How do I write a regular expression that matches an IPv4 dotted address?

Long story short: Don't do it ^^.

share|improve this answer

For IPv4 in an A.B.C.D (decimal) format, as a one-liner:

(?:(?:[01]?\d{1,2}|2[0-4]\d|25[0-5])\.){3}(?:[01]?\d{1,2}|2[0-4]\d|25[0-5])

If nothing follows the address on the line, it can be contracted to:

(?:(?:[01]?\d?\d?|2[0-4]\d|25[0-5])(?:\.|$)){4}

Have fun.

share|improve this answer
inet_aton typically handles a lot more formats than just "A.B.C.D", try "ping 10.4" or "ping 0x0a.077.0.4" and see what happens. – gorilla Feb 27 '10 at 11:41
2  
...which is why the limitation "IPv4 in an A.B.C.D (decimal) format" is clearly stated for those who actually bother to read. :) – vladr Feb 27 '10 at 20:26
Users inputting data don't care about your limitations though. :) – brian d foy Mar 16 '10 at 13:55
Absolutely, one may either have a specific need to support e.g. IPV6 addresses, or run into those users who absolutely positively want to be able to enter non-IPV4 A.B.C.D format IP addresses and still have them pass off as valid, if valid -- but assume for a moment that the highly implicitly stated (via the question tag) "I"m in Perl" assumption was not actually stated. Assume you're validating a form field in Javascript -- you have neither inet_aton nor CPAN to run to the rescue, and maybe you don't want to write a kilometer-long regexp either. :) – vladr Mar 16 '10 at 17:45
And, for the record, you are not qualified to state what planetp's users care or don't care about since you are neither such a user nor are you planetp. :) – vladr Mar 16 '10 at 23:22

If you can leave a perl module behind - then do it.

what about:

if( $ip=~ m/^(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)\.(\d\d?\d?)/ && 
          ( $1 <= 255 && $2 <= 255 && $3 <= 255 && $4 <= 255 )
) {    
    print "valid IP.";
}
share|improve this answer
(?:(?:[01]?\d{1,2}|2[0-4]\d|25[0-5])\.){3}(?:[01]?\d{1,2}|2[0-4]\d|25[0-5])

Actually matches some invalid IP addresses, such as:

192.168.00.001

A slightly more refined solution would be:

(?:(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)\.){3}(?:25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)$
share|improve this answer

Not sure why I don't see this one around anywhere, it's short, concise, and awesome.

([0-9]{1,3}\.){3}[0-9]{1,3}
share|improve this answer
It's mainly because perl has features for this sort of thing. – Ivan Nov 29 '12 at 17:23
1  
That'll match 562.93.612.3, which is not an IP. – Oesor Nov 30 '12 at 14:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.