Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个页面,我想在 Google Analytics 中设置为目标,但 URL 的一部分将是一个随机数 (xxxxx)。如何使用正则表达式指定这样的 URL?
/products/sf/cart/rf/xxxxx/f/477
如果其余部分始终相同,只需:
/products/sf/cart/rf/(\d+)/f/477
如果位数是固定的并且您不需要抓取它:
$pattern = "/\/products\/sf\/cart\/rf\/\d{5}\/f\/477/i";
如果您不关心位数:
$pattern = "/\/products\/sf\/cart\/rf\/\d+\/f\/477/i";
编辑:我加入了i标志,因为您不希望它区分大小写。
i