选择正则表达式中的多个元素
我有以下样式的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试通过在
*
之后添加?
来使匹配非贪婪:Try making your match non-greedy by adding a
?
after the*
: