Help for this page

Select Code to Download


  1. or download this
    sub isbeg {
      my $test = shift;
    ...
      foreach (@endings) { return 1 if $test =~ /$_/}
      return;
    }
    
  2. or download this
    foreach my $line (@lines) {
      push @extracted, $line if isbeg($line) .. isend($line);
      last if isend($line);
    }