Supppose I have an input file with the following shape:
MS_Persoon 1 2 2 60614 1-1951
MS_Persoon 2 3 1 14892 9-1983
MS_Persoon 3 3 1 53673 3-1985
MS_Persoon 4 1 1 9429812-1962
MS_Persoon 5 1 1 1026712-1924
...
The first variable is character (10), then integer(7), then 3 real (width 10, 2 significant digits) and finally a character (len=7) which represents the date of birth.
The variables are not separated by a delimiter.
When I read the following file, it stops at the 4th line.
I think this is due to the fact that the two last variables are not separated.
Is there any way of reading non delimited data?
MS_Persoon 1 2 2 60614 1-1951
MS_Persoon 2 3 1 14892 9-1983
MS_Persoon 3 3 1 53673 3-1985
MS_Persoon 4 1 1 9429812-1962
MS_Persoon 5 1 1 1026712-1924
...
The first variable is character (10), then integer(7), then 3 real (width 10, 2 significant digits) and finally a character (len=7) which represents the date of birth.
The variables are not separated by a delimiter.
When I read the following file, it stops at the 4th line.
I think this is due to the fact that the two last variables are not separated.
Is there any way of reading non delimited data?