这个正则表达式(每个\的额外\是因为它在java代码中
\\*\\{[\\w\\W]*\\}\\*
实际情况是
\*\{[\w\W]*\}\*
但是这个表达式在 }* 方面并不贪心。我正在尝试匹配{ 和 }之间的所有内容,所以如果我有
*{ some comment }* hi there and some stuff *{ comment 2 }* and soe more stuff
应该以
hi there and some stuff and soe more stuff
但它还不够贪婪。这里有关于贪婪的信息,我想我想要X1
\\*\\{[\\w\\W]*\\}1\\* or \\*\\{[\\w\\W]*\\}{1}\\*
但这不起作用。在这个例子中,如何使用他们的 X{n} 东西来强制贪婪?