Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    $goprint=0;
    ...
      if ($_ =~ /^END(.*)/){$goprint=0;next}
    print "$_" if $goprint == 1;
    }
    
  2. or download this
    #Here's code that finds everything  
    #between START and END in a paragraph: 
    ...
    print "$1\n";
    }
    }