![]() |
fscanf in Delphi?
Hi DP'ler,
ich bin grad am übersetzen eines C-Quellcodes, und bin an fscanf hängengeblieben. Die Frage die ich mir stelle ist, ob es etwas ähnliches auch in Delphi gibt? Also das Einlesen von formatierten (mit tab-getrennten) daten (aus einer Datei/Filestream)? Oder als alternative, gibt es eine art "umkehrfunktion" von Format? ciao & thx, Philipp |
Re: fscanf in Delphi?
tab ist docch #13, oder?
Delphi-Quellcode:
ich weiss, dass das weder elegant noch performant ist, aber es sollte funktionieren.
function readfilebytabs(filename:string):TStrings;
var f:file of widestring; s:string; begin result:=Tstringlist.create; assignfile(f,filename); reset(f) while not eof(f) do begin read(f,s); result.deliminator:=#13; result.delimitedtext:=s; end; closefile(f); end; edit: das closefile nicht vergessen... |
Re: fscanf in Delphi?
Zitat:
#13 ist enter/neue zeile Zitat:
Code:
ciao, Philipp
fscanf(inf,"%i%i%i%i%i%s%s%i%s%s%s%i%i%i%i%i%i%i%i%i\n", &j,&j,&j,&j,&j, nam, nam1, &j, s9, s10, s11, &j,&j, &j,&fmedian,&fmean,&fsd,&bmedian,&bmean,&bsd);
|
Re: fscanf in Delphi?
was isn das für ne syntax :shock:
sag mir doch mal kurz die definition von fscanf... |
Re: fscanf in Delphi?
|
Re: fscanf in Delphi?
|
Re: fscanf in Delphi?
Zitat:
Zitat:
und das mir, der ich schon einmal selbst eine explode-funktion geschrieben habe... |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:35 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz