Help for this page

Select Code to Download


  1. or download this
    while(<$fh_big_file>) {
      print if (/MY_HUGE_REGEX_JUST_PLAIN/../^END_OF_BLOCK/o);
    }
    
  2. or download this
    while(<$fh_big_file>) {
      print if (/MY_HUGE_REGEX_JUST_PLAIN/o .. /^END_OF_BLOCK/);
    }
    
  3. or download this
    while(<$fh_big_file>) {
      print if (/$regex/o .. /^END_OF_BLOCK/);
    }