procedure GemTilFil(Tekst, Filnavn: string); var f: TextFile; begin AssignFile(f, Filnavn); Rewrite(f); Write(f, Tekst); CloseFile(f); end;
funciion HentraFil(Filnavn: string): string; var f: TextFile; tmp: string; begin AssignFile(f, Filnavn); Reset(f); Result := \'\'; while not Eof(f) do begin ReadLn(f, tmp); Result := Result + tmp; end; CloseFile(f); end;
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.