galileo1972
Technical User
HI
what can i do if i have a list of DATA´s in one row that ist larger then 80 characters. I have this problem now !!
I have an output of data which are larger then the 80 characters in one row!!! if the end of row is reached, the list continues in the second row (BUT THATS the PROBLEM). Following output, e.g.
13131312 2345241243 254252542 23521351252 21525125 2525
2152 25215
but this should be all in one row !!!!
Later in my program i must read this file. But how can i tell my programm that my row is larger then 80 characters.
cheers
PS: thats my write command (the variables are only example)
write(10,*) a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s
if this is over 80 characters the last two or three variables are written in the next row !!!, thats the failure
and all this should be in one row, because later i must read it in that way:
read(10,*) a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s
what can i do if i have a list of DATA´s in one row that ist larger then 80 characters. I have this problem now !!
I have an output of data which are larger then the 80 characters in one row!!! if the end of row is reached, the list continues in the second row (BUT THATS the PROBLEM). Following output, e.g.
13131312 2345241243 254252542 23521351252 21525125 2525
2152 25215
but this should be all in one row !!!!
Later in my program i must read this file. But how can i tell my programm that my row is larger then 80 characters.
cheers
PS: thats my write command (the variables are only example)
write(10,*) a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s
if this is over 80 characters the last two or three variables are written in the next row !!!, thats the failure
and all this should be in one row, because later i must read it in that way:
read(10,*) a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s