------- Comment #3 from kargl at gcc dot gnu dot org 2007-04-18 21:03 ------- (In reply to comment #2) > Subject: Re: Inability to read ascii text with generic 'f' format > > read(10,*) doesn't work. I have access to two other compilers > (SGI and Portland Group) and both of them accepted the > read(10,(10x,f,f)') syntax and worked properly.
You're obviously using a compiler extension. The Fortran standard clearly defines how the F edit descriptor works. gfortran implements that behavior. I'll note that gfortran implements the Fortran 2003 stream IO feature. This feature should enable you to easily write your own custom parsing routine. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31614