Help for this page

Select Code to Download


  1. or download this
    if ( "aab" =~ /(.)\1(*SKIP)(*FAIL)|.*/ ) {
       say $&;  # b
    }
    
  2. or download this
    if ( "aab" =~ /(.)(*MARK:go)\1(*SKIP:go)(*FAIL)|.*/ ) {
       say $&;  # ab
    }