正则表达式用于查找具有相同开头和不同结尾的链接

时间:2014-04-19 16:23:35

标签: regex notepad++

我需要找到以下类型的链接具有相同的开头但结尾不同。

http://www.domain.com/buy/best%20iphone%20leather%20case.html

链接始终以http://www.domain.com/buy/开头,但可以以不同的链接结束:

best%20iphone%20leather%20case.html
best%20ipad%20chargers.html
etc..

2 个答案:

答案 0 :(得分:1)

您的开始字符串已修复,因此只需使用:

^http://www\.domain\.com/buy/.*\.html

^用于正则表达式,以'string / word / character'开头。

您可能必须逃避'/'和'。'把'\'放在这些字符之前。

答案 1 :(得分:0)

使用此正则表达式:

^http://www\.domain\.com/buy/.+?html