从正则表达式中排除IP,从文本文件中提取IP

时间:2017-05-16 00:00:00

标签: python regex python-2.7

我之前发过一个有关此事的问题,但忘记了另外一个案例。这是我的第一个问题:

Regex to include and exclude certain IPs

附加案例是路由表中的这一行:

D*EX 0.0.0.0/0 [170/19664] via 10.10.10.1, 5d22h, Vlan10
           [170/19664] via 10.10.10.1, 5d22h, Vlan20

如何编辑我的正则表达式以从我的下面的正则表达式中排除0.0.0.0/0 IP:

(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\/(?:[\d]{1,3})\b(?! is variably)

我尝试了这些,但它没有用:

(?! 0.0.0.0/0)(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\/(?:[\d]{1,3})\b(?! is variably)
                                 AND
(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\/(?:[\d]{1,3})\b(?! is variably)(?! 0.0.0.0/0)

由于

戴蒙

1 个答案:

答案 0 :(得分:1)

正如@Greg Hewgill评论的那样,我认为你可以使用if声明。

if ('0.0.0.0/0' not in text) and ('is variably' not in text):
    match = re.findall(r'(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\/(?:[\d]{1,3})\b', text)

如果你真的想用正则表达式解决它,就是这样。 https://regex101.com/r/jTu8cj/2

(?!0\.0\.0\.0/0)(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\.(?:[\d]{1,3})\/(?:[\d]{1,3})\b(?! is variably)

# Positive
D       10.50.80.0/24 [90/3072] via 10.10.10.1, 3w6d, Vlan10
C       10.10.140.0/24 is directly connected, Vlan240
10.10.140.0/2
10.10.140.0/16
2.2.2.2/24
5.5.5.5.5/24

# Negative
10.0.0.0
     10.10.60.0/16 is variably subnetted, 58 subnets, 4 masks
0.0.0.0/0 [170/19664] via 10.10.10.1, 5d22h, Vlan10