建立正则表达式

时间:2019-03-08 09:05:13

标签: regex

我需要构建一个正则表达式,该表达式将在Google Analytics(分析)过滤器中使用。正则表达式需要捕获以下所有字符串:

  

/ webshop?product = bil,/ webshop?product = indbo,/ webshop?product = hus,   / webshop?seksjon =产品,/ webshop?product = ulykke

我尝试构建多个regex,但是这次没有运气。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

这是示例代码。您可以根据需要进行修改

(\/webshop\?(?:product|seksjon)\=\w+)

验证结果here