gpt4 book ai didi

javascript - 修改以下正则表达式以在 URL 末尾包含一个斜杠

转载 作者:行者123 更新时间:2023-11-30 08:38:49 25 4
gpt4 key购买 nike

以下正则表达式匹配 URL 中的最后一个词:

var match = (location.search.match(/(\w+)$/))
? location.search.match(/(\w+)$/)[0]
: "";

问题是有时 URL 看起来像这样 www.mysite.com/match-last-word/ 所以 word 不匹配,因为有一个斜杠在最后。

我试过这个:

var match = (location.search.match(/(\w+)$\/*/))
? location.search.match(/(\w+)$\/*/)[0]
: "";

但是没用。

最佳答案

试试这个:

var match = (location.search.match(/(\w+|\w+\/)$/))
? location.search.match(/(\w+|\w+\/)$/))[0]
: "";

关于javascript - 修改以下正则表达式以在 URL 末尾包含一个斜杠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28802772/

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