Help for this page

Select Code to Download


  1. or download this
    c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le
    "my $s = 'abc';
    ...
     dd \@captures;
    "
    ["a", "b", "c", undef, undef, undef, undef]
    
  2. or download this
    c:\@Work\Perl\monks>perl -wMstrict -MData::Dump -le
    "use 5.010;
    ...
     dd \@captures;
    "
    ["a", "b", "c", undef]