使用正则表达式获取组
{%if Lang="english", Site="testsite"}
content
{%endif}
我需要获取组 Lang、Site 和内容
这就是我用来获取内容部分的内容
".*}(.*){%.*"
{%if Lang="english", Site="testsite"}
content
{%endif}
I need to get the groups Lang, Site and the content
This is what I am using to get the content part
".*}(.*){%.*"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
?
捕获组。这是一个非常粗略的正则表达式来获取您想要的组:
当您使用 c# 中的正则表达式时,您可以通过使用以下方式获取组:
You can capture groups by using
?<groupname>
.This is a very crude regex to get the groups you want:
when you use a regex from c# you can get the groups by using:
我不确定您的正则表达式需要多么灵活,但请尝试以下操作:
然后您可以从那里获取匹配项。
I'm not sure how flexible you need your regex to be, but try something like:
You can then get the matches from there.