> I am trying to read a quite large file (ca 13000 lines) directly into an > array (for speed) Sorry, it's a bad idea. One day your file will be 1 GB size and @ets=<ACCS> will kill your PC trying to load the whole gig into the memory .. while ( <HANDLE> ){..} is the best way for reading large files, I think.
- use of split command Stephen Henderson
- Re: use of split command Aaron Craig
- Re: use of split command Paul
- RE: use of split command Steve Howard
- Re: use of split command Jos Boumans
- RE: use of split command Steve Howard
- RE: use of split command Evgeny Goldin (aka Genie)
- RE: use of split command Steve Howard
- Re: use of split command Jos Boumans