gpt4 book ai didi

regex - 使用正则表达式的 Google Analytics(分析)内容分组

转载 作者:行者123 更新时间:2023-12-03 17:09:21 25 4
gpt4 key购买 nike

我正在尝试设置 Content Groupings对于一个网站。

我的网址结构如下:

http://website.com/news/2014/3/31/MBB_0331140148.aspx?path=mbball
http://website.com/news/2014/3/31/MBB_0331141819.aspx?path=mbball
http://website.com/news/2014/4/11/MBB_0411140500.aspx?path=mbball
http://website.com/news/2014/4/12/FB_0412140313.aspx?path=football
http://website.com/news/2014/4/14/MBB_0414142539.aspx?path=mbball
http://website.com/news/2014/4/15/MBB_0415145757.aspx?path=mbball
http://website.com/news/2014/4/17/FB_0417140744.aspx?path=football
http://website.com/news/2014/4/17/MBB_0417143800.aspx?path=mbball
http://website.com/news/2014/4/2/MBB_0402140734.aspx?path=mbball

对于 RegEx,我使用了以下代码(匹配所有篮球):
/news/201[0-9]/[0-9]/[0-9][0-9]/.*\.aspx\?path=mbball

My RegEx 真的应该是以下内容来捕获所有新闻分组吗?
/news/(.*?)/(.*?)/(.*?)/.*\?.*path=([^&]+)

最佳答案

.*会捕获一切,尽可能。您已包含 ?这使得明星匹配尽可能少。但是,当您试图捕捉所有新闻时,请尝试:

/news/.*?path=[^&]+

这将捕获从 news/到结尾的所有内容,包括路径和尽可能多的非 & 字符。

关于regex - 使用正则表达式的 Google Analytics(分析)内容分组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24941238/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com