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

Without having benchmarked it, I have a feeling that your lookahead regex will fail faster if it's anchored:
/^(?=.*a)(?=.*e)(?=.*i)(?=.*o)(?=.*u)/i