What regex can I use to match any valid IP-address represented in dot-decimal notation?
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.
|
CPAN is your friend: Regex::Common or Net::IP::Match::Regexp. |
||||
|
|
|
Search CPAN. you can find modules such as Data::Validate::IP for your use |
|||
|
|
|
|||||
|
|
How do I write a regular expression that matches an IPv4 dotted address? Long story short: Don't do it ^^. |
|||
|
|
|
For IPv4 in an A.B.C.D (decimal) format, as a one-liner:
If nothing follows the address on the line, it can be contracted to:
Have fun. |
|||||||||||||
|
|
If you can leave a perl module behind - then do it. what about:
|
|||
|
|
Actually matches some invalid IP addresses, such as: 192.168.00.001 A slightly more refined solution would be:
|
||||
|
|
|
Not sure why I don't see this one around anywhere, it's short, concise, and awesome.
|
|||

.*:-) – molf Mar 1 '10 at 10:48