in reply to Re: regex testing for ALL of the vowels in a scalar
in thread regex testing for ALL of the vowels in a scalar

Yes, the look for a string containing this and that idiom ...
/(?=.*?this)(?=.*?that)/

Very nice.