Regular Expressions 101

Community Patterns

Match square brackets with escape backslash symbols

0

Regular Expression
PCRE (PHP <7.3)

/
\[(.*?[^\\])\]
/
gm

Description

This regex allows to match all in square brackets with ability to escape square brackets by using "\"

Submitted by anonymous - 4 years ago