Name: Anonymous 2011-06-03 19:08
Okay this simple thing matches words that has an a e i o u, but how do I make it so that it matches it in the specific order for a e i o u
Example abstemious
foreach $v(@lines)
{
if(($v =~ /a/) && ($v =~ /e/) && ($v =~ /i/) && ($v =~ /o/) && ($v =~ /u/))
{
print $v;
}
}
Example abstemious
foreach $v(@lines)
{
if(($v =~ /a/) && ($v =~ /e/) && ($v =~ /i/) && ($v =~ /o/) && ($v =~ /u/))
{
print $v;
}
}