What regex can I use to match any valid IP-address represented in dot-decimal notation?
|
feedback
|
|
CPAN is your friend: Regex::Common or Net::IP::Match::Regexp. | ||||
|
feedback
|
|
Search CPAN. you can find modules such as Data::Validate::IP for your use | |||
|
feedback
|
| |||||
feedback
|
|
How do I write a regular expression that matches an IPv4 dotted address? Long story short: Don't do it ^^. | |||
|
feedback
|
|
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. | |||||||||||||
feedback
|
|
If you can leave a perl module behind - then do it. what about:
| |||
|
feedback
|
Actually matches some invalid IP addresses, such as: 192.168.00.001 A slightly more refined solution would be:
| ||||
|
feedback
|
.*:-) – molf Mar 1 '10 at 10:48