Help for this page

Select Code to Download


  1. or download this
    c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le
    "my $rx_vowel = qr{ [aeiouAEIOU] }xms;
    ...
     dd \@captures;
    "
    ["did", "cop", "get", "his", "cap", "run"]
    
  2. or download this
    c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le
    "my $vowel = 'aeiouAEIOU';
    ...
     dd \@captures;
    "
    ["did", "cop", "get", "his", "cap", "run"]