What's the best way to validate that an IP entered by the user is valid? It comes in as a string.
|
feedback
|
|
Don't parse it. Just ask.
| |||||||||||||||||
feedback
|
|
The IPy module (a module designed for dealing with IP addresses) will throw a ValueError exception for invalid addresses.
However, like Dustin's answer, it will accept things like "4" and "192.168" since, as mentioned, these are valid representations of IP addresses. | |||
feedback
|
IPv4:
IPv6:
The IPv6 version uses " Edit:
Edit2: I found some links discussing how to parse IPv6 addresses with regex:
Edit3: Finally managed to write a pattern that passes all tests, and that I am also happy with. | ||||
|
feedback
|
|
I think this would do it...
| |||||||
feedback
|
| |||||||||
feedback
|
|
if the following script is hosted on a webserver, it should print out visitors Ip address. You can also put it in a database by assigning it to a variable:
| |||
|
feedback
|