Help for this page
if ( $string =~ m/abc(?:def|xyz)/ ) { print "ok!" }
if ( $string =~ m/abc(def|xyz)/ ) { # I didn't use ?: print "ok!" }