Community Patterns

Community Library Entry

1

Regular Expression
Created·2016-11-17 10:39
Updated·2023-07-20 20:06
Flavor·ECMAScript (JavaScript)

/
\{ # { character (?: # non-capturing group [^{}] # anything that is not a { or } | # OR (?R) # recurses the entire pattern )* # previous group zero or more times \} # } character
/
g
Open regex in editor

Description

Submitted by anonymous