I don't need to validate that the IP address is reachable or anything like that. I just want to validate that the string is in dotted-quad (xxx.xxx.xxx.xxx) fomat, where xxx is between 0 and 255.
|
|
You probably want the inet_pton - which returns -1 on failure, and supports both the IPv4 and future IPv6 addresses. If you still need to write your own IP address system, remember that a standard 32-bit hex number is a valid IP address but not in dotted-decimal notation. This function both verifies the address, and also allows you to use the same address in related socket calls. |
||
|
|
|
I have done the same using only C stdlib functions altough it does not support octal quads as mentioned above, but that should not be an issue, I can easily add that part and give it to you. Being a beginner (student) I din't even know until now that it is possible to get an octal number within your ip. I thought it must be a decimal. Thanks StackOverFlow, I am learning in an exponential order these days :) ! |
||
|
|
|
Boost.Asio provides the class ip::address. If you just want to verify the string, you can use it like this:
This also works for hexadecimal and octal quads. This is also a much more portable solution. |
|||
|
|
|
|
The solution that I settled on was:
This works for most cases that were mentioned in other answers. It doesn't recognize IP addresses with octal or hex formatting, but that's acceptable for my application. |
|||
|
|
|
This looks deceptively simple but has a few pitfalls. For example, many of the solutions posted in the previous answers assume that the quads are in base 10 - but a quad starting with a zero must be treated as a base 8 (octal) number, hence for example any quad part starting with zero and containing the digits 8 or 9 is not valid. I.e, the IP number I emphatically encourage you to use the functions provided by the socket library included in your operating system or compiler environment. Edit: (Thought it was implicit, but) of course, you can also have hexadecimal quads, a la Further edit in response to KaluSingh Gabbar's request: For example, you can specify
|
||||||||||||
|
|
|
Here's one straightforward method.
|
||||||
|
|
|
If you don't want the overhead of Boost or TR1 you could search for the dots and check if the characters between them are numbers from 0 to 255. |
||
|
|
|
|
If you wanted to write this yourself rather than use a library then atoi() to convert characters to ints will let you test the range of each number, and some strcmp's between the "."'s. You can also do some quick checks, such as the length of the string (should be less than 16 characters (not including null terminator), number of dots. etc. But, it's probably MUCH easier to use existing code. |
||
|
|
|
|
You could accomplish this very easily with boost tokenizer and boost char_separator. http://www.boost.org/doc/libs/1_37_0/libs/tokenizer/char_separator.htm |
||
|
|
|
|
Although boost.regex can do this, here is a solution for plain C++:
|
||||||||||
|
|
|
Boost.Regex would be appropriate.
|
||||||||
|
|
|
I've used Boost.Regex for that in the past. You can also find it in TR1. The RE I used:
It's long, but it makes sure each portion is between 0 and 255. I believe I got it from regexlib.com. Another option is to call inet_addr(), which will convert a string to an address. It will return a failure code if it's not a valid ip address. |
||||||||
|
