我正在嘗試使用Python自動化詞語以替換word文檔中的文本。 (我在Word 2003中,如果這很重要,Python 2.4)Python win32com - 自動化Word - 如何替換文本框中的文本?
我的替換方法的第一部分適用於除文本框中的文本之外的所有內容。文本沒有被選中。我注意到當我手動進入Word並按下ctrl時 - 除文本框外,所有文本都被選中。
這裏是到目前爲止我的代碼:
class Word:
def __init__(self,visible=0,screenupdating=0):
pythoncom.CoInitialize()
self.app=gencache.EnsureDispatch(WORD)
self.app.Visible = visible
self.app.DisplayAlerts = 0
self.app.ScreenUpdating = screenupdating
print 'Starting word'
def open(self,doc):
self.opendoc=os.path.basename(doc)
self.app.Documents.Open(FileName=doc)
def replace(self,source,target):
if target=='':target=' '
alltext=self.app.Documents(self.opendoc).Range(Start=0,End=self.app.Documents(self.opendoc).Characters.Count) #select all
alltext.Find.Text = source
alltext.Find.Replacement.Text = target
alltext.Find.Execute(Replace=1,Forward=True)
#Special handling to do replace in text boxes
#http://word.tips.net/Pages/T003879_Updating_a_Field_in_a_Text_Box.html
for shp in self.app.Documents(self.opendoc).Shapes:
if shp.TextFrame.HasText:
shp.TextFrame.TextRange.Find.Text = source
shp.TextFrame.TextRange.Find.Replacement.Text = target
shp.TextFrame.TextRange.Find.Execute(Replace=1,Forward=True)
#My Usage
word=Word(visible=1,screenupdating=1)
word.open(r'C:\Invoice Automation\testTB.doc')
word.replace('[PGN]','1')
的在self.app SHP ..部分是我試圖打的文本框中。它似乎找到了文本框,但它不能代替任何東西。
我已根據您對我的原始答案的評論更新了我的答案。 – 2010-06-13 12:26:23