Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $count;
    $string =~ /$_/i and $count++ for qw/ a e i o u y /;
    print "They're all there!\n" if $count == 6;