复杂的谷歌分析正则表达式在子目录上

时间:2012-01-11 18:38:07

标签: regex google-analytics request

在Google Analytic中,您可以将正则表达式添加到过滤器以获取特定于子目录的结果。

我有两个子目录“/ topoffer”和“/ topoffers”,我需要正则表达式让它们分开。 该站点响应/ topoffer和/ topoffer /以及/ topoffers和/ topoffers / whatother。

如果我使用^ / topoffer,结果将包含在^ / topoffers中 如果我使用^ / topoffer /,/ topoffer没有尾随“/”被省略。

我试过了^ /(topoffer / | topoffer $),但这似乎没有用。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我不知道Google Analytics是否会采取负面预测,但请尝试以下方法:

^/topoffer(?!s)[/]?

如果匹配以/topoffer开头的所有内容,而不是最后跟s和可选/的内容。