>> Ahhhh! OK, so with your 500 lines of data, is it a single INPUT
>> statement for all 500 lines? Or a loop over INPUT?

AND

>> 500 lines of 80 COL wide

If so, then the code you're looking for is

LOOP
   INPUT LN, 80
   IF TRIM(LN) = '' THEN EXIT
   GOSUB PROCESS.LINE
REPEAT

That way the INPUT statement will take 80 chars, and process them, and go
back to get the next 80 chars.
-------
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

Reply via email to