我有以下四个网址,其中我想使用正则表达式只过滤两个网址。
/chassis/motherboard/cpu
< ---- this
/chassis/motherboard/cpu/core0
/chassis/motherboard/cpu0
< ---- this
/chassis/motherboard/cpu1/core0
我曾尝试使用^.*[0-9a-z_].cpu
,但我无法解决问题。
答案 0 :(得分:1)
您可以使用此正则表达式:
^.*/cpu[0-9]*$
这将匹配以/cpu
或/cpy<number>