Enter your regex pattern...
Try these examples:
_*w_*a_*t_*e_*r_*
Words containing w,a,t,e,r in that order
<(ag)(m)(ra)__>
7-letter words containing 'ag', 'm', 'ra', and any two letters
"CVCVCVCVCV"
10-letter words with alternating consonants and vowels
A{5}&_*ing
5-letter words ending in 'ing'
[aeiou]*
Words made only of vowels
"the _*"
Phrases starting with 'the'
Click any example to try it out