Regular Expressions 101

Community Patterns

Find JSON strings in a string

1

Regular Expression
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

Description

Submitted by anonymous - 7 years ago (Last modified 8 months ago)