Registriert seit: 20. Jan 2006
Ort: Lübbecke
11.443 Beiträge
Delphi 12 Athens
|
AW: XML Endtag finden
24. Aug 2018, 11:49
Vielleicht so:
Delphi-Quellcode:
const
FileName = 'MyXmlFile.xml';
var
N: Integer;
S: string;
begin
S := TFile.ReadAllText(FileName);
N := S.LastIndexOf('</');
if N >= 0 then begin
TFile.WriteAllText(FileName, S.Insert(N, '<MyTag>MyValue</MyTag>'));
end;
end;
|