在匹配的外部花括号之间获取内容

时间:2014-01-26 10:19:21

标签: regex

好的,所以,假设我有一些文字:

Any random content here
{{mycontent
more content goes here
{{curly braces may also appear in here}}
{even single ones}

}}

And more content goes here...

我需要在{{mycontent及其相应的}}右括号之间获取该部分。

你会怎么做,在RegEx(那是必须)?

1 个答案:

答案 0 :(得分:-2)

/\{{2}(.*)\}{2}/s

这将匹配2个花括号之间的任何内容,包括新行。

结果将是

0 => string '{{mycontent
more content goes here
{{curly braces may also appear in here}}
{even single ones}

}}'