Help for this page

Select Code to Download


  1. or download this
        my $pattern = "----- blah de blah ----";
        do_whatever($_) foreach split /$pattern/, join '', <> ;
    
  2. or download this
        {
           local $/ = "----- blah de blah ----";
    ...
               do_whatever($this_section);
           }
        }