21

我正在尝试进行测试以检查 sys.argv 输入是否与 IP 地址的 RegEx 匹配...

作为一个简单的测试,我有以下...

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"

但是,当我将随机值传递给它时,在大多数情况下它会返回“可接受的 IP 地址”,除非我有一个基本上等同于\d+.

4

13 回答 13

40

使用正则表达式来验证 IP 地址是一个坏主意 - 这将通过 999.999.999.999 作为有效。改用套接字尝试这种方法 - 更好的验证,即使不是更容易做到也同样简单。

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')

如果您真的想改用解析主机方法,则此代码将完全执行此操作:

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
于 2012-06-29T15:13:38.200 回答
23

您必须通过以下方式修改您的正则表达式

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

那是因为.是一个通配符,代表“每个字符”

于 2012-06-29T14:53:24.007 回答
15

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]?)$

否则您将使用无效的 IP 地址,例如 999.999.999.999、256.0.0.0 等

于 2012-06-30T20:05:01.413 回答
10

我遇到了同样的情况,我发现使用套接字库的答案很有帮助,但它不提供对 ipv6 地址的支持。找到了一个更好的方法:

不幸的是,它仅适用于 python3

import ipaddress

def valid_ip(address):
    try: 
        print (ipaddress.ip_address(address))
        return True
    except:
        return False

print (valid_ip('10.10.20.30'))
print (valid_ip('2001:DB8::1'))
print (valid_ip('gibberish'))
于 2017-09-25T10:14:57.287 回答
3

您正在尝试使用 . 作为一个 。不作为任何字符的通配符。改为使用\.来表示句点。

于 2012-06-29T14:52:37.057 回答
0
str = "255.255.255.255"
print(str.split('.'))

list1 = str.split('.')

condition=0

if len(list1)==4:
    for i in list1:
        if int(i)>=0 and int(i)<=255:
            condition=condition+1

if condition!=4:
    print("Given number is not IP address")
else:
    print("Given number is valid IP address")
于 2018-12-16T08:48:47.383 回答
0
import re
ipv=raw_input("Enter an ip address")
a=ipv.split('.')
s=str(bin(int(a[0]))+bin(int(a[1]))+bin(int(a[2]))+bin(int(a[3])))
s=s.replace("0b",".")
m=re.search('\.[0,1]{1,8}\.[0,1]{1,8}\.[0,1]{1,8}\.[0,1]{1,8}$',s)
if m is not None:
    print "Valid sequence of input"
else :
    print "Invalid input sequence"

为了简单起见,我使用了这种方法。就像解释如何评估真正的 ipv4 地址一样简单。尽管不需要检查其是否为二进制数。希望你喜欢这个。

于 2018-01-04T05:16:16.993 回答
0
def ipcheck():
# 1.Validate the ip adderess
input_ip = input('Enter the ip:')
flag = 0

pattern = "^\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}$"
match = re.match(pattern, input_ip)
if (match):
    field = input_ip.split(".")
    for i in range(0, len(field)):
        if (int(field[i]) < 256):
            flag += 1
        else:
            flag = 0
if (flag == 4):
    print("valid ip")
else:
    print('No match for ip or not a valid ip')
于 2017-07-03T18:11:30.917 回答
0

如果你真的想使用 RegEx,下面的代码可能会过滤文件中的无效 ip 地址,无论文件的组织方式如何,每行一个或多个,即使有更多的文本(RegEx 的概念本身):

def getIps(filename):
    ips = []
    with open(filename) as file:
        for line in file:
            ipFound = re.compile("^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$").findall(line)
            hasIncorrectBytes = False
            try:
                    for ipAddr in ipFound:
                        for byte in ipAddr:
                            if int(byte) not in range(1, 255):
                                hasIncorrectBytes = True
                                break
                            else:
                                pass
                    if not hasIncorrectBytes:
                        ips.append(ipAddr)
            except:
                hasIncorrectBytes = True

    return ips
于 2019-06-06T16:31:54.873 回答
-1

IP 地址使用以下身份验证:

  1. 255 ---> 250-255
  2. 249 ---> 200-249
  3. 199 ---> 100-199
  4. 99 ---> 10-99
  5. 9 ---> 1-9

    import re    
    k = 0
    while k < 5 : 
        i = input("\nEnter Ip address : ")
        ip = re.match("^([1][0-9][0-9].|^[2][5][0-5].|^[2][0-4][0-9].|^[1][0-9][0-9].|^[0-9][0-9].|^[0-9].)([1][0-9][0-9].|[2][5][0-5].|[2][0-4][0-9].|[1][0-9][0-9].|[0-9][0-9].|[0-9].)([1][0-9][0-9].|[2][5][0-5].|[2][0-4][0-9].|[1][0-9][0-9].|[0-9][0-9].|[0-9].)([1][0-9][0-9]|[2][5][0-5]|[2][0-4][0-9]|[1][0-9][0-9]|[0-9][0-9]|[0-9])$",i)
        k = k + 1 
        if ip:
            print ("\n=====================")
            print ("Valid IP address")
            print ("=====================")
            break
        else :
            print ("\nInvalid IP")
    else :
        print ("\nAllowed Max 5 times")
    

如果您有疑问,请回复我?

于 2015-02-11T14:55:52.830 回答
-1
import re

st1 = 'This is my IP Address10.123.56.25 789.356.441.561 127 255 123.55 192.168.1.2.3 192.168.2.2 str1'

在这里,我的有效 IP 地址只是192.168.2.2并且假设10.123.56.25不是有效的,因为它与一些字符串组合并且192.168.1.2.3无效。

pat = r'\s(((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])\s|$))'

match = re.search(pat,st1)

print match.group()

================ RESTART: C:/Python27/Srujan/re_practice.py ================
192.168.2.2 

这将 grep 确切的 IP 地址,我们可以忽略任何看起来像 IP 地址但不是有效的模式。例如:'Address10.123.56.25', '789.356.441.561' '192.168.1.2.3'

如果需要任何修改,请发表评论。

于 2017-07-20T09:18:59.953 回答
-2

这适用于 python 2.7:

import re
a=raw_input("Enter a valid IP_Address:")
b=("[0-9]+"+".")+"{3}"
if re.match(b,a) and b<255:
    print "Valid"
else:
    print "invalid"
于 2017-07-31T12:36:37.213 回答
-2

""" 用于查找有效 IP 地址的正则表达式 """

import re


IPV4 = re.fullmatch('([0-2][0-5]{2}|\d{2}|\d).([0-2][0-5]{2}|\d{2}|\d).([0-2][0-5]{2}|\d{2}|\d).([0-2][0-5]{2}|\d{2}|\d)', '100.1.1.2')

if IPV4:
    print ("Valid IP address")

else:
    print("Invalid IP address")
于 2020-07-10T11:16:18.490 回答