Google Analytics 中动态目标页面的正则表达式

发布于 2024-07-30 15:06:50 字数 122 浏览 5 评论 0原文

我想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

℉絮湮 2024-08-06 15:06:50

如果其余部分始终相同,则:

/products/sf/cart/rf/(\d+)/f/477

If the rest is always the same, just:

/products/sf/cart/rf/(\d+)/f/477
冷月断魂刀 2024-08-06 15:06:50

如果位数是固定的并且您不需要抓住它:

$pattern = "/\/products\/sf\/cart\/rf\/\d{5}\/f\/477/i";

如果您不关心位数:

$pattern = "/\/products\/sf\/cart\/rf\/\d+\/f\/477/i";

编辑:我放入了 i 标志,因为您不想要它区分大小写。

If the number of digits is fixed and you don't need to grab it:

$pattern = "/\/products\/sf\/cart\/rf\/\d{5}\/f\/477/i";

If you don't care about the number of digits:

$pattern = "/\/products\/sf\/cart\/rf\/\d+\/f\/477/i";

EDIT: I threw in the i flag because you don't want it to be case-sensitive.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文