Help for this page

Select Code to Download


  1. or download this
      DB<6> "ab" =~ /(a)(?{print "match1"}).{0}(b)(?{print "match2"})/
    match1match2
      DB<7> "axb" =~ /(a)(?{print "match1"}).{0}(b)(?{print "match2"})/
    match1