hi,
I have the following data format:
Date: 1997 2 21.0 dE/E: 1.34138E-07 dL/L: 2.61358E-15
Date: 1998 7 6.0 dE/E: 8.72011E-08 dL/L: 5.22716E-15
Date: 1999 11 18.0 dE/E: 1.25871E-07 dL/L: 3.92037E-15
Date: 2001 4 1.0 dE/E: 2.85034E-08 dL/L: 4.29374E-15
Date: 2002 8 14.0 dE/E: 1.42615E-07 dL/L: 1.86684E-15
When I try to read this data using the following 'read' statement, it
is not reading beyond 'dE'. It does not print anything beyond the 'dE'
in the above file (i.e, starting from '/')....My 'read' statement and
output is below:
read(10,*)test1,test2,test3,test4,test5,test6
print *,test1,test2,test3,test4,test5,test6
output:
Date: 1997 2 21.0 dE
Date: 1998 7 6.0 dE
Date: 1999 11 18.0 dE
Date: 2001 4 1.0 dE
Date: 2002 8 14.0 dE
Any help is appreciated
Thanks


|