Help for this page

Select Code to Download


  1. or download this
    $_ = "aaab";
    
    print "/(?>[ab]+)(?>b+)/ matches $_\n" if /(?>[ab]+)(?>b+)/;
    print "/(?>[ab]+b+)/ matches $_\n"     if /(?>[ab]+b+)/;