in reply to Long Versions
What i needed was:$line =~ (/a/i && /e/i && /i/i && /o/i $$ /u/i)
The deparse did not show all of these individual matches with the built in $_ ($line in my example).($line =~ /a/i && $line =~ /e/i && $line =~ /i/i && $line =~ /o/i $$ $ +line =~ /u/i)
|
|---|