1

我试图用这个正则表达式在 GA 中设定一个目标 2 天,但我无法理解它......

URL 格式如下:

/purchase.php?cDd=1&transaction_id=xxxxxxx&verify=xxxxxxxxxxxxxxxx=&method=creditcard&type=purchase

transaction_id= 填充了一组数字 verify=填充了一串数字、大写和小写字母

基本上我只想匹配以&method=creditcard&type=purchase

我试图放&method=creditcard&type=purchase,但它也检索其他 URL。

4

2 回答 2

5

$在你的正则表达式的末尾放一个符号。

这样你就强制只匹配以&method=creditcard&type=purchase

^/purchase.php\?cDd=1&transaction_id=[0-9]*&verify=[a-zA-Z0-9]*=&method=creditcard&type=purchase$

或者

&method=creditcard&type=purchase$

会成功的

于 2010-05-21T09:59:46.710 回答
-2

对于任何动态 URL

^/(.*)&method=creditcard&type=purchase$
于 2015-02-26T00:55:29.807 回答