Help for this page

Select Code to Download


  1. or download this
    perl -e '$_="aaaa"; print "Match: $1\n" if /(?:(a)\1)/;'
    
  2. or download this
    perl -e '$_="aaaa"; print "Match: $1\n" if /((?:a)\1)/;'