我一直在撞墙挡在我的头上,我对正则表达式相当新,而且有点超出我的深度.我正在使用此网络合规性软件,该软件不允许在字段中匹配多个条件但是接受正则表达式.
!(?!.*FastEthernet[0-24].[0-24]\.[0-250])
该软件解析所有信息,直到它与表达的标准匹配.所以在我的情况下,我希望它匹配!除非它后跟一个子接口FastEthernet#/#.#其中#是任何数字.
这是我的数据
interface FastEthernet0/0 shutdown ! interface FastEthernet0/0.100 ip address 192.168.1.100 ! interface FastEthernet0/1 shutdown !
解决方法
这应该这样做:
!(?!\s*interface FastEthernet\d/\d\.\d)
看到这个在rubular上运行