Regular Expressions 101

Community Patterns

Match string not containing string

0

Regular Expression
PCRE (PHP <7.3)

/
(?<=^|]).*?(?=\[|$)
/
gm

Description

^((?!anyword).)*$

Submitted by anonymous - 5 years ago