正则表达式匹配元素在匹配之前留下

发布于 2024-10-17 14:33:19 字数 317 浏览 4 评论 0原文

我得到了一个具有以下结构的文件:

[section1]
item1 = text1
item2 = text2
item3 = text3

[section2]
item1 = text4
item2 = text5
item3 = text6

...

我将找到文本部分。例如文本是“text6”,它应该返回“section2”。

我绑了:

content.scan(/(^\[.*?\]).*?#{text}/m)

但这只是返回文件的第一部分:/ (我用红宝石)

I got a file with the following structure:

[section1]
item1 = text1
item2 = text2
item3 = text3

[section2]
item1 = text4
item2 = text5
item3 = text6

...

and i will find the section to a text. e.g. text is "text6" it should return "section2".

I tied:

content.scan(/(^\[.*?\]).*?#{text}/m)

but that is only returning the first section of the file :/
(i use ruby)

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

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

发布评论

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

评论(1

歌枕肩 2024-10-24 14:33:19
/\[([^\[]*?)\][^\[]*?text6/m

这应该有效:)

/\[([^\[]*?)\][^\[]*?text6/m

This should work :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文