in reply to Long Versions

It is supposed to print the line when all of the vowels are present. The Deparse module seems like a good idea, except it missed the one expansion step that I was missing. I had this:
$line =~ (/a/i && /e/i && /i/i && /o/i $$ /u/i)
What i needed was:
($line =~ /a/i && $line =~ /e/i && $line =~ /i/i && $line =~ /o/i $$ $ +line =~ /u/i)
The deparse did not show all of these individual matches with the built in $_ ($line in my example).