I'm trying to set up a goal on Google Analytics and want to match a regular expression against the following url:
我正在尝试在Google Analytics上设置目标,并希望将正则表达式与以下网址匹配:
/tasks/[random characters of random length]/complete
/ tasks / [随机长度的随机字符] /完成
An example input url would be:
输入网址的示例如下:
/tasks/12444ab22aaa7/complete
/任务/ 12444ab22aaa7 /完整
Any ideas?
有任何想法吗?
2 个解决方案
#1
1
Perhaps this
也许这个
\/tasks\/[^/]*\/complete
#2
2
^/tasks/.*/complete$
^ /任务/.*/完整$
Validate with a search in the Top Content report before using in a filter.
在使用过滤器之前,使用“热门内容”报告中的搜索进行验证。
#1
1
Perhaps this
也许这个
\/tasks\/[^/]*\/complete
#2
2
^/tasks/.*/complete$
^ /任务/.*/完整$
Validate with a search in the Top Content report before using in a filter.
在使用过滤器之前,使用“热门内容”报告中的搜索进行验证。