Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i want to edit a textfile. if i read a special line (let us say //--begin editing text here--//) then after this line i want to insert several lines but i don't want to override existing lines. is this possible with delphi? thanks!

sample text:

this

is a file

with text in it

//--begin inserting text here--//

and nothing in between

sample text after edit:

this

is a file

with text in it

//--begin inserting text here--//

now there is something

in between

and nothing in between

share|improve this question

2 Answers

up vote 3 down vote accepted

There are several ways you can do this.

The simplest version:

var 
  sl : TStringList;
  I : Integer;
begin
  sl := TStringList.Create;
  sl.LoadFromFile();
  // No you have an array of strings in memory one for each line
  for I := 0 to SL.Count -1 do
  begin
     sl.strings[I]; 
   end;
  sl.SaveToFile();
end;

You can also use other File IO Commands such as: To Read a text file:

  var
   t : TextFile;
  begin
    AssignFile(t,'FileName.txt');
    Reset(T);
    while not eof(t);
    begin
      Readln(T,LineOfText);
    end;
    CloseFile(T);
  end;

The to write out what you want..

  var
   t : TextFile;
  begin
    AssignFile(t,'FileName.txt');
    Rewrite(T);
    Writeln(T,LineOfText);
    Writeln(T,LineOfText);
    Writeln(T,LineOfText);
    CloseFile(T);
  end;

It should be noted that in reality both of the above methods are actually just rewriting the entire contents of the file.

The TFileStream class allows you manipulate the actual bytes of a file. In general you would need to read until you found the expected text. Then read ahead and cache the rest of the file, as you write out the new ending of the file.

share|improve this answer
how can i iterate the tstringlist line by line? it looks ok with the "indexof"-statement from robert but can i read line by line? – soulbrother Apr 19 '11 at 9:21
for I := 0 to SL.Count-1 do { here do something with SL[I] }; – Roman Yankovsky Apr 19 '11 at 9:31
perfect, thanks! – soulbrother Apr 19 '11 at 9:45
The old file IO methods you showed in your last two examples (AssignFile etc) are deprecated and there for backwards compatibility. (Very backwards, they've existed since the Turbo Pascal / DOS era.) You probably shouldn't recommend them. TFileStream or other streams are the 'normal' way to do file IO in Delphi. – David M Apr 20 '11 at 5:31
AssignFile may be old but it's not Deprecated. I have Delphi XE and just checked the system unit and help file and it is not marked as deprecated in any way. – Robert Love Apr 20 '11 at 12:07
show 2 more comments
var
  SL: TStringList;
  InsTextPos: Integer;
begin
  SL := TStringList.Create;
  try
    SL.LoadFromFile('c:\test.txt');
    InsTextPos := SL.IndexOf('//--begin inserting text here--//');
    if InsTextPos >= 0 then
    begin
      SL.Insert(InsTextPos+1, 'Inserting Line 2');
      SL.Insert(InsTextPos+1, 'Inserting Line 1');
      SL.SaveToFile('c:\test.txt');
    end;
  finally
    SL.Free;
  end;
end;
share|improve this answer
thanks,roman. works perfectly! – soulbrother Apr 19 '11 at 9:13
2  
+1 your code is exactly what was asked for. – Robert Love Apr 19 '11 at 12:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.