vote up 2 vote down star

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?

flag

7 Answers

vote up 9 vote down check

If it is just to extract the numbers from the IP and not to validate the IP address then you could just do:

[0-9]

However, I think a simple String.Split(".") would be an easier option.

link|flag
2  
+1 for suggesting String.Split, because using a regex for this is silly, unless you're trying to find an ip address in a longer string. – Brian Jul 7 at 15:33
1  
+1 for String.Split, it sounds like a lot healthier solution that building a state machine (which regex is). – Simon Svensson Jul 7 at 15:57
It's definately easier, the only caveat would be if the IPs appear at arbitrary positions in a text body. – Skurmedel Jul 7 at 16:05
vote up 6 vote down

Something very simple yet ugly would work.. giving you four groups one for each octet.

(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})
link|flag
vote up 5 vote down

([0-9]+).([0-9]+).([0-9]+).([0-9]+)

...should do it. It's no validating regex though, allows numbers beyond 255 for each part.

Here's a crazy validating one:

\b(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?).(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\b

Credit to last regex goes to RegexBuddy makers.

link|flag
So maybe ([0-9][0-9][0-9]).([0-9][0-9][0-9]).([0-9][0-9][0-9]).([0-9][0-9][0-9])\ :) – amischiefr Jul 7 at 15:28
@amischiefr, that would accept 000-999, while the one Skurmedel provided only accepts 000-255, the later being a correctly formatted ip address. – Simon Svensson Jul 7 at 15:56
+1 for the regex that validates ip addr – Rashmi Pandit Jul 7 at 16:01
vote up 3 vote down
/(\d+)\.(\d+)\.(\d+)\.(\d+)/
link|flag
From the above your regex parser should return parameters 1, 2, 3 and 4 which can then be processed separately. – Lazarus Jul 7 at 15:27
1  
Note this won't validate an IP address (it'd accept 111111111111.1.000000000000.1234567890) but you didn't ask for that so it's probably okay! – butterchicken Jul 7 at 15:27
Each bracketed section '()' returns a value from the regex – Lazarus Jul 7 at 15:28
/([012]\d{,2})\.([012]\d{,2})\.([012]\d{,2})\.([012]\d{,2})/ ? – Lazarus Jul 7 at 15:29
2  
The question only asked to extract the values, not to validate the syntax. :) – David Dorward Jul 7 at 16:03
vote up 1 vote down

First port of call for regex... RegEx Library

link|flag
Hmmm. This does have a few solutions that should work. – Brian Jul 7 at 15:33
vote up 1 vote down

In case someone needs a validating RegEx for (all possible) IPv4 addresses:

([^\d.]|^)([01]{0,1}\d{1,2}|2[0-5][0-5])[.]([01]{0,1}\d{1,2}|2[0-5][0-5])[.]([01]{0,1}\d{1,2}|2[0-5][0-5])[.]([01]{0,1}\d{1,2}|2[0-5][0-5])([^\d]|$)

The IP is contained in 2nd, 3rd and 4th parameters. 1st and last are not used. Those are necessary otherwise a wrong IP like:

999.1.2.3

would be catched as "99.1.2.3". I am not sure if you want to allow IP ending with a dot, e.g.

1.2.3.4.

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.

link|flag
vote up 0 vote down

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 inet_aton.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.