Help for this page

Select Code to Download


  1. or download this
    $r = qr/(.)/;
    "a" =~ $r;
    print "$1\n";
    { "b" =~ $r; print "$1\n"; }
    print "$1\n";
    
  2. or download this
    a
    b
    a