Help for this page

Select Code to Download


  1. or download this
    local $/ = "";
    while (my @records = <$fh>) {
        foreach my $line (@records) {
    
  2. or download this
    local $/ = "";
    while (my $paragraph = <$fh>) {
    ...
            print "<$line>\n";
        }
    }