Help for this page

Select Code to Download


  1. or download this
    $result =~ s/(Mr(s)?) a/\1 A/s;
    
    \1 better written as $1 at...
    
  2. or download this
    if ($test =~ /some_test/) {
        $foo = $1;
    }