Help for this page

Select Code to Download


  1. or download this
    $str = aa;
    $str =~ /(a)$1/;
    print "$&";
    
  2. or download this
    $str = aa;
    $str =~ /(a)\1/;
    print "$&";