Google Analytics 中动态目标页面的正则表达式
我想在 Google Analytics 中将一个页面设置为目标,但 URL 的一部分将是随机数 (xxxxx)。 如何使用正则表达式指定这样的 URL?
/产品/SF/购物车/rf/xxxxx/f/477
I have a page that I want to set as a goal in Google Analytics but there is a part of the URL that will be a random numnber (xxxxx). How do I specify such a URL with regex?
/products/sf/cart/rf/xxxxx/f/477
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果其余部分始终相同,则:
If the rest is always the same, just:
如果位数是固定的并且您不需要抓住它:
如果您不关心位数:
编辑:我放入了
i
标志,因为您不想要它区分大小写。If the number of digits is fixed and you don't need to grab it:
If you don't care about the number of digits:
EDIT: I threw in the
i
flag because you don't want it to be case-sensitive.