How can I determine if a string is an IP? Either IPv4 or IPv6?
What is the least and most number of characters?
I assume this would be a regex answer.
|
1
|
How can I determine if a string is an IP? Either IPv4 or IPv6? What is the least and most number of characters? I assume this would be a regex answer.
|
||
|
|
|
|
But the question is not as simple as assuming But surely this is a Google for it question? Pretty much every regex primer you can find anywhere uses IP as an example! ipv4 + regex scores 183,000 hits! |
||
|
|
In .NET there's an IPAddress type which has a handy method TryParse. Example:
|
|||
|
|
|
|
I've done this before, but I like Raymond Chen's post at: http://blogs.msdn.com/oldnewthing/archive/2006/05/22/603788.aspx Where he basically advocates using regexes for what they're good at: parsing out the tokens. Then evaluate the results. His example:
It's much easier to look at that and grok what it's supposed to be doing. |
||
|
|
|
|
For IPv4 you can use this regular expression.
It looks quite complex but it works by limiting each quad to the numbers 0-255. |
||
|
|
|
@unsliced: true, this problem can get a little crazy. If you really need to handle any possible IP address then you'll have to put together something more sophisticated. However, if you just want to do basic validation to make sure users are entering properly formatted data, I think it's fair to restrict them to the a.b.c.d model with the above regular expressions. |
||
|
|
|
|
@unsliced that is correct however it will of course depend on implementation, if you are parsing an IP from a user visiting your site then your are fine to use regex as it SHOULD be in x.x.x.x format. For IPv6 you could use this
however it does not catch everything because with IPv6 it is much more complicated, acording to wikipedia all of the following examples are technicaly correct however the regex above will only catch the ones with a *
|
||
|
|
|
|
So, since Unkwntech's method doesn't work 100% of the times, any other suggestions for IPv6? And because some have posted language specific answers, I am particularly interested in php... So any luck there? |
||
|
|
|
|
IPv4 becomes: I'm not sure about the IPv6 rules. |
||
|
|
|
|
Since half of that regex handles the fact that the last segment doesn't have a period at the end, you could cut it in half if you tack a '.' to the end of your possible IP address. Something like this:
|
|||
|
|