show/hide this revision's text 2 Dropped the native variant. Expanded the regex to comply with the RFC. Added another regex for IPv6 addresses.

Native:

def is_valid_ip(ip):    ip = ip.split('.')    try:    """Validates IP addresses.    """    return len(ipis_valid_ipv4(ip) =or is_valid_ipv6(ip)

IPv4:

def is_valid_ipv4(ip):    """Validates IPv4 addresses.    """    pattern = 4 and all(0 <= int(xre.compile(r"""        (?:          # Dotted variants:          (?:            # Decimal 1-255 (no leading 0's)            < 256 for x in ip[3-9]\d?|2(?:5[0-5]|[0-4]?\d)?|1\d{0,2}            0x0*[0-9a-f]{1,2}  # Hexadecimal 0x0 - 0xFF (possible leading 0's)          except ValueError|            0+[1-3]?[0-7]{0,2} # Octal 0 - 0377 (possible leading 0's)          (?:                  # Repeat 0-3 times, separated by a dot            \.            (?:              [3-9]\d?|2(?:5[0-5]|[0-4]?\d)?|1\d{0,2}              0x0*[0-9a-f]{1,2}              0+[1-3]?[0-7]{0,2}          ){0,3}          0x0*[0-9a-f]{1,8}    # Hexadecimal notation, 0x0 - 0xffffffff          0+[0-3]?[0-7]{0,10}  # Octal notation, 0 - 037777777777          # Decimal notation, 1-4294967295:          4[01]\d{8}|[1-3]\d{0,9}|[4-9]\d{0,8}    """, re.VERBOSE | re.IGNORECASE)

Regexppattern.match(ip) is not None

IPv6:

def is_valid_ip(ip)is_valid_ipv6(ip):    """Validates IPv6 addresses.    """    pattern = re.compile(r'0*(?:25[0-5]|2[0-4]\d|1?\d{1,2})re.compile(r"""        (?!.*?::.*?::)            # Make sure there are at most one wildcard in                                  # the address.        [0-9a-f]{0,4}             # First group, possibly empty.        (?:          (?:(?<!::):|(?<=::))    # Unless preceeded by 'r'(?:\.0*(?:25[0-5]|2[0-4]\d|1?\d{1,2})){3}$'::', require a ':'.          [0-9a-f]{0,4}           # Another group, possibly empty.        ){5}                      # Repeat 5 times.        (?:          (?:(?<!::):|(?<=::))    # Unless preceeded by '::', require a ':'.          # First token of a IPv4 address:          (?:[3-9]\d?|2(?:5[0-5]|[0-4]?\d)?|1\d{0,2}|0)          # Followed by three more tokens, separated by dots          (?:\.(?:[3-9]\d?|2(?:5[0-5]|[0-4]?\d)?|1\d{0,2}|0)){3}          (?:                     # Two more IPv6 groups, in case there was no            (?:(?<!::):|(?<=::))  # IPv4 suffix.            [0-9a-f]{0,4}          ){2}    """, re.VERBOSE | re.IGNORECASE | re.DOTALL)

The IPv6 version uses "(?:(?<!::):|(?<=::))", which could be replaced with "(?(?<!::):)" on regex engines that support conditionals with look-arounds. (i.e. PCRE, .NET)

Edit:

  • Dropped the native variant.
  • Expanded the regex to comply with the RFC.
  • Added another regex for IPv6 addresses.
  • show/hide this revision's text 1

    Native:

    def is_valid_ip(ip):
        ip = ip.split('.')
        try:
            return len(ip) == 4 and all(0 <= int(x) < 256 for x in ip)
        except ValueError:
            return False
    

    Regexp:

    def is_valid_ip(ip):
        pattern = re.compile(r'0*(?:25[0-5]|2[0-4]\d|1?\d{1,2})'
                             r'(?:\.0*(?:25[0-5]|2[0-4]\d|1?\d{1,2})){3}$')
        return pattern.match(ip) is not None