Dogg has asked for the wisdom of the Perl Monks concerning the following question:
Then I split that single scalar into a list of numbers:while (<ASA>) { $ASAlist .= $_; } #end while
It just seems to fail on the splitting (the first time it segment faulted with a panic:POPSTACK error and the second time it just died). It has worked on a shorter array (102,000 numbers). Is there some length limit on arrays? Is there a better way to split the long scalar into the array? (I'm using perl 5.8.0.)@ASAList = split(/ /, $ASAlist);
Thanks.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Limit on array size?
by BrowserUk (Patriarch) on Nov 06, 2003 at 17:41 UTC | |
Re: Limit on array size?
by ctilmes (Vicar) on Nov 06, 2003 at 17:13 UTC | |
Re: Limit on array size?
by thelenm (Vicar) on Nov 06, 2003 at 17:18 UTC | |
Re: Limit on array size?
by Abigail-II (Bishop) on Nov 06, 2003 at 17:18 UTC | |
Re: Limit on array size?
by pg (Canon) on Nov 06, 2003 at 17:19 UTC |