How to implement? If you try to read using the read function, you get the error "invalid numeric input".
Sample file:
1254,1 1345,88 24,24
Code example:
procedure example(); var f: TextFile ; i: integer; j:double; begin AssignFile(f, 'text.txt'); Reset(f); for i := 1 to 3 do read(f,j); end;