Help for this page

Select Code to Download


  1. or download this
    if ($line =~ /a/i && $line =~ /e/i &&  $line =~ /i/i && $line =~ /o/i 
    +&& $line =~ /u/i) {
    
  2. or download this
    if ($line =~ /a/i && $_ =~ /e/i &&  $_ =~ /i/i && $_ =~ /o/i && $_ =~ 
    +/u/i) {
    
  3. or download this
    $line =~ (/a/i && /e/i && /i/i && /o/i && /u/i)