in reply to How to store large strings?

I can't assign the whole sequence to a variable.

That doesn't make any sense, This shows perl storing 6 billion characters in a single variable:

[0] Perl> $a = 'x'x 1e6;; [0] Perl> $a x= 6000;; [0] Perl> print length $a;; 6000000000

So there is more to your problem than you are describing. The best thing you can do, is post the code that is giving you the problem.


With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
In the absence of evidence, opinion is indistinguishable from prejudice.

The start of some sanity?