Enter your regex pattern...
Try these examples:
"the _*"
Phrases starting with 'the'
"CVCVC-VCVCV"
10-letter words that may be split in the middle
A{7}&_*x_*
7-letter words containing 'x'
<aan>g<amr>
Words with 'g' between anagrams of 'aan' and 'amr'
[aeiou]*
Words made only of vowels
_*a_*&_*b_*&_*c_*&_{5,}
Words containing a, b, c that are 5+ letters long
Click any example to try it out