Regular Expressions 101

Community Patterns

Capture everything not surrounded by {} or []

0

Regular Expression
PCRE (PHP <7.3)

/
\[.+?\]|\{.+?\}|([^\[\{]+)
/
gm

Description

Submitted by anonymous - 4 years ago