我只需要匹配网址C和D.
鉴于我有这些网站:
a. http://www.website.com/our-resources/news/?p=1
b. http://www.website.com/example/voice-of-the-customer/news/?p=12
c. http://www.website.com/our-resources/news/?p=123
d. http://www.website.com/example/?p=4321
e. http://www.website.com/example/products/touchchat/news/?p=12345
我在www.regexpal.com上使用.*\?((.*=.*)(&?[0-9]{3,4}))
,它与c,d和e匹配。
答案 0 :(得分:1)
答案 1 :(得分:0)
使用此:
.*\?((.*=)([0-9]{3,4}))
这是由.*
.*=.*
引起的