Help for this page

Select Code to Download


  1. or download this
    
    $regex = qr/--/
    ...
       unshift(@match, $thestring);
    }
    
  2. or download this
    081407 start up server
    081407 -- fatal error in procedure 1
    081407 -- disconnected user
    081407 -- logging started
    081407 -- not enough space
    
  3. or download this
    081407 -- fatal error in procedure 1
    081407 -- not enough space
    
  4. or download this
    081407 -- disconnected user
    081407 -- logging started
    
  5. or download this
    1. get all occurrences of "--".
    2. in those occurrences of "--" ignore those that have "logging" and "
    +disconnected"
    ...
    qr/-- || ~! logging,disconnected/ (wrong syntax of course)
    
    something like an ignore list.