Help for this page

Select Code to Download


  1. or download this
    /.*?([0-9]).*?\1/
  2. or download this
    'b' =~ /(.)/;
    print "Yup!\n" if 'ab' =~ /(.)$1/;
    
  3. or download this
    'b' =~ /(.)/;
    print "Yup!\n" if 'ab' =~ /(.)\1/;