Help for this page

Select Code to Download


  1. or download this
    $/ = "";  # input record separator set to empty string
    
    ...
            $last_rec = $_;
        }
    }
    
  2. or download this
    $/ = "";
    my $last_prefix = my $last_target = '';
    ...
            $last_prefix .= $_;
        }
    }