Thank you for the sample code to break a definition into smaller
and easier manageable parts. Now, a variaion on this.
I have several files that are just one line, but billions of
characters long. I.e, there is no end-of-line or carriage return
except at the very end. If I:
Line Input #1, getall$
How much of that single line will I confidently obtain? Should I
purposely read in the first million characters, work with it,
then read in the second million, work with it and repeat until
done?
Thank you.
Robert
------------------
and easier manageable parts. Now, a variaion on this.
I have several files that are just one line, but billions of
characters long. I.e, there is no end-of-line or carriage return
except at the very end. If I:
Line Input #1, getall$
How much of that single line will I confidently obtain? Should I
purposely read in the first million characters, work with it,
then read in the second million, work with it and repeat until
done?
Thank you.
Robert
------------------
Comment