Help for this page

Select Code to Download


  1. or download this
    m/(?(?=Z|Y)[Z]|[Y])/
    
  2. or download this
    (?(DEFINE)
        (?<NAME_PAT>....)
    )
    
  3. or download this
    print "Yes"
      if $string =~ m/(?(?=')'[^']|)
                      (?(?=")"[^"]|)/x;
    
  4. or download this
    m/(?:'[^']|"[^"])/