Help for this page

Select Code to Download


  1. or download this
        local $/;  # Added in an update
        while( <IN> ) { while( /$regex/gm ) { ... } }
    
  2. or download this
         
        local $/;  # Added in an update
        my $file = <IN>;
        while( $file=~/$regex/gm ) { ... }