mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 01:01:33 +02:00
* One more tool used in dotted filenames
This commit is contained in:
parent
e6f71b6acc
commit
3707a2c0d7
47
utils/dotutils/replaceword.pp
Normal file
47
utils/dotutils/replaceword.pp
Normal file
@ -0,0 +1,47 @@
|
||||
program replaceword;
|
||||
|
||||
{$mode objfpc}
|
||||
{$h+}
|
||||
uses regexpr,sysutils, classes;
|
||||
|
||||
function ReplaceWord(aLine, aName, aFull: String): String;
|
||||
|
||||
var
|
||||
RE : TRegExpr;
|
||||
|
||||
begin
|
||||
RE:=TRegExpr.Create('\b'+aName+'\b');
|
||||
try
|
||||
// RE.ModifierI:=True;
|
||||
Result:=RE.Replace(aLine,aFull);
|
||||
// Writeln(aLine,': ',aName,' -> ',aFull,' = ',Result);
|
||||
finally
|
||||
RE.Free;
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
var
|
||||
I,J : Integer;
|
||||
aMakeFile: TStrings;
|
||||
W1,W2,aFN : String;
|
||||
|
||||
begin
|
||||
W1:=ParamStr(1);
|
||||
W2:=ParamStr(2);
|
||||
aMakeFile:=TStringList.Create;
|
||||
try
|
||||
for I:=3 to ParamCount do
|
||||
begin
|
||||
aFN:=Paramstr(I);
|
||||
aMakeFile.LoadFromFile(aFN);
|
||||
aMakeFile.SaveToFile(aFn+'.bak');
|
||||
For J:=0 to aMakefile.Count-1 do
|
||||
aMakefile[J]:=ReplaceWord(aMakefile[J],W1,W2);
|
||||
aMakeFile.SaveToFile(AFN);
|
||||
end;
|
||||
finally
|
||||
aMakeFile.Free;
|
||||
end;
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user