in reply to Re^3: When can the character length of a Perl Scalar become an issue?
in thread When can the character length of a Perl Scalar become an issue?
OK so first I build the scalar- the code just appends values to a long string. It can reach 40,000 or more characters, saved in scalar $E. $E has NO EOL characters. The $E gen code is hard to sanitize. Then $E is appended to a very short file:
open A, ">>$a"; print A "$E\n"; close A;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^5: When can the character length of a Perl Scalar become an issue?
by marto (Cardinal) on Sep 21, 2023 at 08:42 UTC | |
|
Re^5: When can the character length of a Perl Scalar become an issue?
by NERDVANA (Priest) on Sep 22, 2023 at 03:12 UTC | |
|
Re^5: When can the character length of a Perl Scalar become an issue?
by Anonymous Monk on Sep 21, 2023 at 06:10 UTC |