Regular Expressions 101

Community Patterns

Regex to capture any string having all given words

0

Regular Expression
PCRE (PHP <7.3)

/
(?:\b(?:your|amazon\.com|shipped)\b.*){3}
/
ig

Description

no description available

Submitted by anonymous - 7 years ago