Help for this page

Select Code to Download


  1. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my $s = qq{aa \n bb \n cc};
    ...
    C: match, $1 'aa
     bb
     cc' @ 0
    
  2. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my $s = qq{aa \n bb \n cc};
    ...
         }xms;
    "
    A: match, $1 'aa ' @ 0  $2 ' ' @ 9  $3 'c' @ 11
    
  3. or download this
    c:\@Work\Perl\monks>perl -wMstrict -le
    "my $s = qq{aa \n bb \n cc};
    ...
         }xms;
    "
    A: match, $1 'aa ' @ 0  $2 ' ' @ 9  $3 'c' @ 11