Regular Expressions 101

Community Patterns

1...56789...575

find match in url

0

Regular Expression
Python

r"
^(?=.*\google\b)(?=.*\i\b).*|(?=.*\com\b).*
"
gm

Description

find the word "google" with "i" or "com"

Submitted by Shai chikorel - 2 years ago