gpt4 book ai didi

regex - 用于Google目标跟踪的正则表达式

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

我正在尝试创建正则表达式来跟踪我网站上的目标转化(使用动态网址)。

网址:sitename.com/username/year(或all

所以这将是/johnsmith/2014/johnsmith/all

由于用户名和年份可能会有所不同,因此我将正则表达式作为/[A-Za-z0-9-_.]{2,16}/all|[0-9]{4}/

这根本不起作用。有人可以帮我吗

最佳答案

这个正则表达式怎么样

/([\w.]+)\/((?:\d+|all))/


测试字符串

sitename.com/johe8.nsmith/2014
sitename.com/johnsmith/all


结果


比赛1

[13-25] johe8.nsmith
[26-30] 2014

比赛2

[44-53] johnsmith
[54-57] all



demo here



如果您有问题中提到的限制,则可以使用以下正则表达式

/([\w.]{2,16})\/((?:\d{4}|all))/


demo here

关于regex - 用于Google目标跟踪的正则表达式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25647081/

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