Help for this page

Select Code to Download


  1. or download this
    /foo(?!.*foo)/
    
  2. or download this
    s/(?<=foo)/,/g; # Without lookbehind: s/foo/foo,/g or s/(foo)/$1,/g
    
  3. or download this
    s/(?<=look)(?=ahead)/-/g;
    
  4. or download this
    /foo  # Match starting at foo
     (         # Capture
    ...
     )         # End capture
     bar  # and ending at bar
    /x;
    
  5. or download this
    s/(?<=,        # after a comma,
        (?!        # but not matching
    ...
          (?=\d)   #   digit afterward
        )
      )/ /gx;      # substitute a space
    
  6. or download this
    s/(?<=,        # after a comma, but either
        (?:
    ...
          (?!\d)   #   not matching digit afterward
        )
      )/ /gx;      # substitute a space
    
  7. or download this
    print "$1\n" while /(?=(.*))/g;