read string (File Number),(Variable to store the string)
array$=""
x=1
repeat
if x < len(line$) then array$=array$+mid$(line$,x) else exit
inc x
until array$=(whatever the code for return is.)
like that?
Or perhaps...
repeat
if file end(1) = 0 then read string 1,line$ else exit
until line$=whatever the code for return is.
close file 1
First example adds one more character to the end of the line each time until there are no more characters to add, while the second one reads the next line in the file (so long as there is another line to read...)
...maybe one day I'll finish a project
