Enter your regex pattern...
Try these examples:
"CVCVCVCVCV"
10-letter words with alternating consonants and vowels
[aehimnprsw]*&_*a_*&_*e_*&_*h_*&_*i_*&_*m_*&_*n_*&_*p_*&_*r_*&_*s_*&_*w_*
Words using all letters from a-e-h-i-m-n-p-r-s-w
<(ag)(m)(ra)__>
7-letter words containing 'ag', 'm', 'ra', and any two letters
"CVCVC VCVCV"
Two 5-letter words with alternating consonants and vowels
<aan>g<amr>
Words with 'g' between anagrams of 'aan' and 'amr'
"(((((m?o)?c)?h)?i)?t)?_(h(a(t(o(ry?)?)?)?)?)?&_{5,}"
5+ letter words combining parts of 'mochit' and 'hatory'
Click any example to try it out