Looking for a string to pass to String#matches(String) that will match IPv4, and another to match IPv6.
|
|
Got these from some blog. Someone good w/ regexes should be able to come up with a single regex for all IPv6 address types. Actually, I guess you could have a single regex that matches both IPv4 and IPv6. |
||||
|
|
|
Here's a regex to match IPv4 addresses:
You'll need to escape the backslashes when you specify it as a string literal in Java:
|
|||
|
|
|
|
You have specified : in the IPv4 pattern, don't you think this is used in IPv6 only? |
||
|
|
|
Another good option for processing IPs is to use Java's classes Inet4Address and Inet6Address, which can be useful in a number of ways, one of which is to determine the validity of the IP address. I know this doesn't answer the question directly, but just thought it's worth mentioning. |
||
|
|
|
|
The regex allows the use of leading zero's in the IPv4 parts. Some Unix and Mac distro's convert those segments into octals I suggest using: 25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d as a IPv4 segement. |
||
|
|
