lazarus/tools/install/win/ReplaceText/ReplaceText.lpr
2013-09-13 11:05:07 +00:00

23 lines
456 B
ObjectPascal

program ReplaceText;
uses Classes, strutils, LazLogger;
var
s: TStringList;
i, j: Integer;
x: String;
begin
s := TStringList.Create;
s.LoadFromFile(ParamStr(1));
j := 0;
for i := 0 to s.Count-1 do begin
x := AnsiReplaceText(s[i], ParamStr(2), ParamStr(3));
if s[i] <> x then inc(j);
s[i] := x;
end;
s.SaveToFile(ParamStr(1));
s.Free;
DebugLn(['Replaced in ', j, ' lines for file ', ParamStr(1), ' ',ParamStr(2)]);
end.