选择正则表达式中的多个元素

发布于 2024-12-01 05:48:38 字数 271 浏览 0 评论 0原文

我有以下样式的 URL:

http://whatever.com/param1/val1/param2/val2

我想匹配所有键/值 对。我尝试了这种模式:

/^http:\/\/whatever.com(?:\/([^\/]+)\/([^\/]+))*$/g

它只匹配最后一个键/值对。

不幸的是,我无法使用代码来获取对...我怎样才能捕获所有对?

I've got the URLs in the following style:

http://whatever.com/param1/val1/param2/val2

I want to match all key/value pairs. I tried this pattern:

/^http:\/\/whatever.com(?:\/([^\/]+)\/([^\/]+))*$/g

It only matches the last key/value pair.

Unfortunately, I cannot use code to get the pairs... How can I capture all pairs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

负佳期 2024-12-08 05:48:38

尝试通过在 * 之后添加 ? 来使匹配非贪婪

/^http:\/\/whatever\.com\/(?:([^\/]+)\/([^\/]+)\/?)*?$/g

Try making your match non-greedy by adding a ? after the *:

/^http:\/\/whatever\.com\/(?:([^\/]+)\/([^\/]+)\/?)*?$/g
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文