Say you have an IP address: 74.125.45.100 so its A.B.C.D
Is there a way to use RegEx to get A,B,C separately?
|
|
Say you have an IP address: 74.125.45.100 so its A.B.C.D Is there a way to use RegEx to get A,B,C separately?
|
||
|
|
|
|
If it is just to extract the numbers from the IP and not to validate the IP address then you could just do:
However, I think a simple |
||||||||||
|
|
|
Something very simple yet ugly would work.. giving you four groups one for each octet.
|
||
|
|
|
|
...should do it. It's no validating regex though, allows numbers beyond 255 for each part. Here's a crazy validating one:
Credit to last regex goes to RegexBuddy makers. |
||||||
|
|
|
|
||||||||||||||
|
|
|
First port of call for regex... RegEx Library |
||
|
|
|
In case someone needs a validating RegEx for (all possible) IPv4 addresses:
The IP is contained in 2nd, 3rd and 4th parameters. 1st and last are not used. Those are necessary otherwise a wrong IP like:
would be catched as "99.1.2.3". I am not sure if you want to allow IP ending with a dot, e.g.
If not, change the last part to ([^\d.]|$). I do not allow any dots in front of it though. I still think this RegEx is a messed monster :) and a better solution would be to validate by hand using a function. |
||
|
|
|
|
While others have pointed out various good regexps; May I ask why you absolutely must use regular expressions for that? It will be slow and error-prone. Most platforms do have integrated IP address functionality, or provide a way to call to |
||
|
|