在插件中,我想过滤包含4个数字并以.html结尾的登陆页面。我使用了以下命令: ga:landingPagePath=@.0-9{4}.html.$,但它不起作用
发布于 2019-02-22 15:34:18
问题解决了。我应该使用~=作为regex,而不是=@,以.$结尾而不是.$;ga:landingPagePath=~.0-9{4}.html.*$
https://stackoverflow.com/questions/54710882
相似问题