(Piet) wrote in news:39cbe663.0409290925.2e735196
@posting.google.com:
> Hello,
> I have written a small script that parses an (ugly) HTML file line by
> line and converts the relevant information to CSV. During parsing, I
> heavily use string concatenation to glue together parts of text that
> belong together (but might be separated in the original file by tags
> or newlines). In the code, the expression
> $oldstring = $oldstring.$newstring
> occurs very often.
> Frequently, the strings get longer than 256 characters. At this point,
> the string concatenation refuses to add anything to $oldstring. How is
> it possible to avoid that?
> Thanks in advance for answers on a (maybe very newbish) question
> Piet
Your post appeared twice. Please don't post multiple copies of the same
question.
You'll need to provide a short self-contained script that still exhibits
the problem to support such an outrageous claim.
#! perl
use strict;
use warnings;
my $str = 'a';
$str .= 'a' for (1 .. 999_999);
print length($str), "\n";
__END__
--
A. Sinan Unur
d
(remove '.invalid' and reverse each component for email address)