Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to make a test for checking whether a sys.argv input matches the regex for an IP address...

As a simple test, I have the following...

import re

pat = re.compile("\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}")
test = pat.match(hostIP)
if test:
   print "Acceptable ip address"
else:
   print "Unacceptable ip address"

However when I pass random values into it, it returns "Acceptable ip address" in most cases, except when I have an "address" that is basically equivalent to \d+

Any thoughts welcome.

Cheers

Matt

share|improve this question
Are you willing to accept 999.999.999.999 as "valid" IP address? :) – Maria Zverina Jun 29 '12 at 15:15
IPv4 only ; no IPv6? – jbelacqua Jun 29 '12 at 15:16

5 Answers

up vote 4 down vote accepted

You have to modify your regex in the following way

pat = re.compile("^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$")

that's because . is a wildcard that stands for "every character"

share|improve this answer
Also to make sure the string is exactly as provided you could add ^ to be beginning and $ to the end. Otherwise it possible matches a string like 10.0.0.1:1234 where you don't want it. – javex Jun 29 '12 at 14:55
@javex you're right – DonCallisto Jun 29 '12 at 14:55
OMG...FFS!!! such a "school-boy error"... I was actually helping someone the other day with regex and "."... GHHHH! ... I was set on it being a python issue! Thanks very much – MHibbin Jun 29 '12 at 15:01
1  
You're welcome ... Errors happens :) – DonCallisto Jun 29 '12 at 15:02
1  
BTW: prefix the string with r also, it's a good habit: r"^\d{1,3}..." – Ned Batchelder Jun 29 '12 at 15:06

Using regex to validate IP address is a bad idea - this will pass 999.999.999.999 as valid. Try this approach using socket instead - much better validation and just as easy, if not easier to do.

import socket

def valid_ip(address):
    try: 
        socket.inet_aton(address)
        return True
    except:
        return False

print valid_ip('10.10.20.30')
print valid_ip('999.10.20.30')
print valid_ip('gibberish')

If you really want to use parse-the-host approach instead, this code will do it exactly:

def valid_ip(address):
    try:
        host_bytes = address.split('.')
        valid = [int(b) for b in host_bytes]
        valid = [b for b in valid if b >= 0 and b<=255]
        return len(host_bytes) == 4 and len(valid) == 4
    except:
        return False
share|improve this answer
4  
Regex can work, but your approach is better. – jbelacqua Jun 29 '12 at 15:18
Yes ... you could write a write a horrendous regex that matches "0" to "255" but it's probably better to avoid it :) – Maria Zverina Jun 29 '12 at 15:20
1  
+1 from me too for this approach (upvoted an hour ago or so :) – Levon Jun 29 '12 at 17:32

You are trying to use . as a . not as the wildcard for any character. Use \. instead to indicate a period.

share|improve this answer

regex for ip v4: ^((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$ otherwise you take not valid ip address like 999.999.999.999, 256.0.0.0 etc

share|improve this answer
wow! I think I will stick with the sockets method, thanks though.. I will actually take note of this... I was wondering what it would look like. :-) – MHibbin Jul 1 '12 at 9:44

If you use Django, then here what I have: (https://github.com/un33k/django-ipware). If not, you can look at the code and modify to your needs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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