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