Looking for a string to pass to String#matches(String) that will match IPv4, and another to match IPv6.
|
feedback
|
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. | |||||||
feedback
|
|
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. | |||
|
feedback
|
|
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:
| ||||
|
feedback
|
|
The regex allows the use of leading zeros in the IPv4 parts. Some Unix and Mac distros convert those segments into octals. I suggest using | ||||
|
feedback
|