正则表达式 匹配问题

发布于 2022-09-11 22:54:59 字数 274 浏览 16 评论 0

大家好,请教一个关于正则表达式匹配的问题:

const str = 'npm xxxx com npm xxxxx com npm javascript net npm xxx com'

前面会有N多个npm出现 但是只匹配距离net结尾 最近的npm 之间的内容 也就是第三个 npm 到 net 之间的内容 (npm 到 net 之间的内容不固定)

自己撸了一个 发现只能从最开始 匹配到结尾 (前提不用split)

最后

十分感谢大家的回答

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

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

发布评论

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

评论(3

_失温 2022-09-18 22:54:59
/(?:npm.+?)*npm(.*)net/

被转义了

最单纯的乌龟 2022-09-18 22:54:59

str.match(/^npm(.*?)net/)[1]

一笑百媚生 2022-09-18 22:54:59
// 这是你想要的??
const str = 'npm xxxx com npm xxxxx com npm javascript net npm xxx com'

let res = str.match(/npm(.*?)net/)

console.log(res)
// ["npm xxxx com npm xxxxx com npm javascript net", " xxxx com npm xxxxx com npm javascript ", index: 0, input: "npm xxxx com npm xxxxx com npm javascript net npm xxx com"]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文