in reply to Re: appending a unique marker to each url in a file
in thread appending a unique marker to each url in a file
This construct is not ideal. You are interpolating the variable $content into a new string for every line. You should use concatenation and just append to the string:open (FILE," $htmlfile") || die "Cannot open HTML file for parsing!: $ +!\n"; while(<FILE>) { $content="$content$_\n"; } close(FILE);
But what you are doing now is slurping in the whole file and adding an extra newline at the end of each line (for which I see absolutely no reason). The same thing can be achieved by undefing $/ like this:while(<FILE>) { $content .= "$_\n"; }
{ local $/; # undefs $/ for this block of code only open (FILE," $htmlfile") || die "Cannot open HTML file for parsing!: + $!\n"; $content = <FILE>; # reads in whole file $content =~ s/\n/\n\n/g; # if really necessary to duplicate newlines close(FILE); }
-- Hofmator
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: appending a unique marker to each url in a file
by tachyon (Chancellor) on Aug 08, 2001 at 17:36 UTC | |
by chipmunk (Parson) on Aug 08, 2001 at 17:59 UTC | |
by tachyon (Chancellor) on Aug 08, 2001 at 18:32 UTC |