Help for this page

Select Code to Download


  1. or download this
    if ( $string =~ m/abc(?:def|xyz)/ ) { 
      print "ok!" 
    }
    
  2. or download this
    if ( $string =~ m/abc(def|xyz)/ ) { 
      # I didn't use ?:
      print "ok!" 
    }