gpt4 book ai didi

javascript - 需要 JavaScript/Regex 来挑选和处理 URL

转载 作者:行者123 更新时间:2023-12-02 20:13:04 24 4
gpt4 key购买 nike

我有一个如下所示的字符串:

“等等等等等等http://www.example.com/check?x=rabP4F3Mk&dept=check等等等等......”

对于与上面类似的字符串,我需要 Regex/JavaScript 代码返回如下字符串:“rabP4F3Mk&dept=check”

我会尝试更精确:

if (the string contains "example.com/check?x="){ 
return the portion of the token that contains "example.com/check?x=" after the "="
}

最佳答案

matches = str.match(/example.com\/check\?x\=([^\s]*)/);
if(matches.length > 1) return matches[1];

关于javascript - 需要 JavaScript/Regex 来挑选和处理 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6721851/

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