Ah ok.
I believe
middle$() is the command you are looking for.
rem set up and array to store individual strings
dim output$(1,7)
rem open a file to read
open to read 1,"enter name.txt"
rem read in a line
read string 1,s$
rem extract numbers
for t=0 to 7
output$(0,t)=middle$(s$,t,t+1)
next t
rem read in another line
read string 1,s$
rem extract numbers
for t=0 to 7
output$(1,t)=middle$(s$,t,t+1)
next t
rem close file
close file 1
rem print numbers to screen
for x=0 to 1
for t=0 to 7
print output$(x,t)
next t
print
next x
rem wait for keypress
wait key
rem end
end
TheComet

Make the paths of your enemies easier with WaypointPro!