RE: How long can $_ be?

2002-03-13 Thread Anette Seiler
PROTECTED] Subject: RE: How long can $_ be? Is there some limit in how long the contents of the variable $_ can be? Not that I'm aware of, no. I encounter this problem on Solaris machines running Perl 5.005. On Windows with Perl 5.6.1. no such problem was encountered. What could

Re: How long can $_ be?

2002-03-13 Thread Elaine -HFB- Ashton
Anette Seiler [[EMAIL PROTECTED]] quoth: * *From the command line I start the script with perl script.pl. Now I *have to enter some text. I just enter any text, either by typing or by *cutting and pasting. I do not enter any strange characters or *newlines. I just type in some text. I even

RE: How long can $_ be?

2002-03-13 Thread Peter_Farrar
] SEILER@hbz-nr cc: w.deSubject: RE: How long can

RE: How long can $_ be?

2002-03-12 Thread David Gray
Is there some limit in how long the contents of the variable $_ can be? Not that I'm aware of, no. I encounter this problem on Solaris machines running Perl 5.005. On Windows with Perl 5.6.1. no such problem was encountered. What could cause the problem? I suppose it might be a a

RE: How long can $_ be?

2002-03-12 Thread Nikola Janceski
12, 2002 9:06 AM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: RE: How long can $_ be? Is there some limit in how long the contents of the variable $_ can be? Not that I'm aware of, no. I encounter this problem on Solaris machines running Perl 5.005. On Windows with Perl 5.6.1

RE: How long can $_ be?

2002-03-12 Thread Hanson, Robert
There is no limit on the length of a scalar in Perl other than the amount of memory you have. It is possible that it is splitting the newline because you are using a multi-byte character set, or the global variable $/ (input record seperator) was changed in the script, or you are working with