was ist neu ¦  programmier tips ¦  indy artikel ¦  intraweb artikel ¦  informationen ¦  links ¦  interviews
 sonstiges ¦  tutorials ¦  Add&Win Gewinnspiel

Tips (1541)

Dateien (137)
Datenbanken (90)
Drucken (35)
Grafik (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Mathematik (76)
Multimedia (45)
Oberfläche (107)
Objekte/
ActiveX (51)

OpenTools API (3)
Sonstiges (126)
Strings (83)
System (266)
VCL (242)

Tips sortiert nach
Komponente


Tip suchen

Tip hinzufügen

Add&Win Gewinnspiel

Werbung

27 Visitors Online


 
...in einem Word Dokument Text ersetzen?
Autor: Thomas Stutz
[ Tip ausdrucken ]  

Tip Bewertung (94):  
     


{
  This function starts a hidden word instance, opens a specified document "ADocument"
  and replaces (all) occurrences of "SearchString" with a specified "ReplaceString".
  The function is similar to the Delphi StringReplace() function.
}

{
  Diese Funktion startet eine Word versteckte Instanz, öffnet eine Datei und
  ersetzt (alle) Vorkommen von "SearchString" durch "ReplaceString".
  Die Funktion ist ähnlich zur StringReplace() Funktion.
}


uses
  
ComObj;

// Replace Flags
type
  
TWordReplaceFlags = set of (wrfReplaceAll, wrfMatchCase, wrfMatchWildcards);

function Word_StringReplace(ADocument: TFileName; SearchString, ReplaceString: string; Flags: TWordReplaceFlags): Boolean;
const
  
wdFindContinue = 1;
  wdReplaceOne = 1;
  wdReplaceAll = 2;
  wdDoNotSaveChanges = 0;
var
  
WordApp: OLEVariant;
begin
  
Result := False;

  { Check if file exists }
  
if not FileExists(ADocument) then
  begin
    
ShowMessage('Specified Document not found.');
    Exit;
  end;

  { Create the OLE Object }
  
try
    
WordApp := CreateOLEObject('Word.Application');
  except
    on 
E: Exception do
    begin
      
E.Message := 'Word is not available.';
      raise;
    end;
  end;

  try
    
{ Hide Word }
    
WordApp.Visible := False;
    { Open the document }
    
WordApp.Documents.Open(ADocument);
    { Initialize parameters}
    
WordApp.Selection.Find.ClearFormatting;
    WordApp.Selection.Find.Text := SearchString;
    WordApp.Selection.Find.Replacement.Text := ReplaceString;
    WordApp.Selection.Find.Forward := True;
    WordApp.Selection.Find.Wrap := wdFindContinue;
    WordApp.Selection.Find.Format := False;
    WordApp.Selection.Find.MatchCase := wrfMatchCase in Flags;
    WordApp.Selection.Find.MatchWholeWord := False;
    WordApp.Selection.Find.MatchWildcards := wrfMatchWildcards in Flags;
    WordApp.Selection.Find.MatchSoundsLike := False;
    WordApp.Selection.Find.MatchAllWordForms := False;
    { Perform the search}
    
if wrfReplaceAll in Flags then
      
WordApp.Selection.Find.Execute(Replace := wdReplaceAll)
    else
      
WordApp.Selection.Find.Execute(Replace := wdReplaceOne);
    { Save word }
    
WordApp.ActiveDocument.SaveAs(ADocument);
    { Assume that successful }
    
Result := True;
    { Close the document }
    
WordApp.ActiveDocument.Close(wdDoNotSaveChanges);
  finally
    
{ Quit Word }
    
WordApp.Quit;
    WordApp := Unassigned;
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  
Word_StringReplace('C:\Test.doc','Old String','New String',[wrfReplaceAll]);
end;

 

Bewerten Sie diesen Tipp:

dürftig
ausgezeichnet


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners