c# Regex 捕获所有匹配

发布于 2024-12-05 11:25:49 字数 331 浏览 2 评论 0原文

我的输入字符串是:

(article.dos = $_article.dos_2_998_$ or article.des like $_article.des_3_%toto tata_$)

我当前的正则表达式是: (.*)(?\$_(.+)_\$)(.*)

所以我想提取所有 $_ 。 .. _$,但 regex.Matches 只给出最后一个匹配: $_article.des_3_%toto tata_$

有什么想法吗?

谢谢。

编辑:输入字符串还可以包含 $ 字符。

My input string is :

(article.dos = $_article.dos_2_998_$ or article.des like $_article.des_3_%toto tata_$)

My current regex is : (.*)(?<t>\$_(.+)_\$)(.*)

So I want extract all $_ ... _$, but regex.Matches gives only the last match : $_article.des_3_%toto tata_$

Any ideas ?

Thanks.

edit : The input string can also contains $ character.

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

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

发布评论

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

评论(1

时光沙漏 2024-12-12 11:25:49

将您的正则表达式更改为:

(?<t>\$_([^$]+)_\$)

Change your regex to:

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