我今天的第二个问题!
我想在 c# 中使用正则表达式获取括号(左括号和右括号)之间包含的文本。我使用这个正则表达式:
@"\{\{(.*)\}\}
这是一个例子:如果我的文字是:
text {{text{{anothertext}}text{{andanothertext}}text}} and text.
我想得到:
{{text{{anothertext}}text{{andanothertext}}text}}
但有了这个正则表达式,我得到:
{{text{{anothertext}}
我知道另一种获取文本的解决方案,但是有正则表达式的解决方案吗?