in reply to Re: Reading "slices" out of a file at known start markers
in thread Reading "slices" out of a file at known start markers
while(<DATA>) { chomp; # find out if there's a line continuation # and remove the trailing backslash my $cont = s/\\\s*$//; # print without newline, no matter what print; # decide whether to end print with newline print "\n" unless $cont; }
while (<DATA>) { s/\\\s*\n//; print; }
|
|---|