Regular Expressions 101

Community Patterns

0

Email

PCRE (PHP <7.3)
This is to find email
Submitted by anonymous - 3 years ago

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

0

Regular Expression
Python

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

Description

Loading markdown...
Submitted by anonymous - 3 years ago