Hi:
I wrote a Perl script which would remove the '^L' from the very top of several files. That is, I read the incoming files and if the first line is a '^L' then I ignore it and go to the next line.
This works fine for me but sometimes I get a file wherein the subsequent lines are pretty long.
So I was wondering, what is the maximum number of characters can Perl hold in a variable? For example,
open(INFILE....)
while ($line = <INFILE>) {
....
}
How many characters can $line hold? This is important so that I can assure users that none of their information will be cut off in any case.
thanks,
daniel