Help for this page

Select Code to Download


  1. or download this
    `(?<!pattern)'
            A zero-width negative look-behind assertion.
            For example `/(?<!bar)foo/' matches any
            occurrence of "foo" that does not follow "bar".
            Works only for fixed-width look-behind.
    
  2. or download this
    perl -ne 'print if /(?<!time)\(/' < ippl.log > ippl.noteworthy