思科正则表达式与此匹配但不是这样

前端之家收集整理的这篇文章主要介绍了思科正则表达式与此匹配但不是这样前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在一个更大的配置中有以下字符串:

as-path-set DAVE-9999-CBG
as-path-set DAVE-9999-CBG
as-path-set DAVE-55555-CBG
as-path-set DAVE-44444-CBG
as-path-set DAVE-33333-CBG
as-path-set DAVE-11111-CBG
as-path-set DAVE-22222-CBG

我想匹配所有这些行,除了包含9999的行.我不理解否定正则表达式,以使这项工作.有人可以帮忙吗理想的输出将是:

as-path-set DAVE-55555-CBG
as-path-set DAVE-44444-CBG
as-path-set DAVE-33333-CBG
as-path-set DAVE-11111-CBG
as-path-set DAVE-22222-CBG

解决方法

你可以使用负向前瞻:

^as-path-set DAVE-(?!9999)[0-9]+-CBG$

猜你在找的正则表达式相关文章