Google Analytics URL 的正则表达式
我正在尝试在 Google Analytics 上设置目标,并希望将正则表达式与以下网址进行匹配:
/tasks/[随机长度的随机字符]/complete
输入 url 的示例为:
/tasks/12444ab22aaa7/完成
有什么想法吗?
I'm trying to set up a goal on Google Analytics and want to match a regular expression against the following url:
/tasks/[random characters of random length]/complete
An example input url would be:
/tasks/12444ab22aaa7/complete
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
^/tasks/.*/complete$
在过滤器中使用之前,通过热门内容报告中的搜索进行验证。
^/tasks/.*/complete$
Validate with a search in the Top Content report before using in a filter.
或许这个
Perhaps this