Regular Expressions 101

Community Patterns

Words that contains foo or bar, but not spam or eggs

0

Regular Expression
Python

r"
^(?!.*nlp)(?=.*(find|want))(?=.*string).*$
"
gm

Description

no description available

Submitted by anonymous - 3 years ago