我正在尝试使用Python自动化word来替换word文档中的文本。 (如果重要的话,我正在使用2003语言和Python 2.4)
我的替换方法的第一部分适用于除文本框中的文本之外的所有内容。文本没有被选中。我注意到当我手动进入Word并按下ctrl-A时,除文本框外,所有文本都被选中。
到目前为止,这是我的代码:
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 ..部分中的for shp是我尝试点击文本框。它似乎找到了文本框,但它并没有取代任何东西。
答案 0 :(得分:4)
当我将文本框添加到word文档时,它们会添加到绘图画布中。因此,顶级形状是画布,文本框包含在画布中。您应该使用CanvasItems
方法访问画布中的对象,即文本框
以下示例适用于我。我用单个文本框创建了一个word文档。
import win32com.client
word = win32com.client.Dispatch("Word.Application")
canvas = word.ActiveDocument.Shapes[0]
for item in canvas.CanvasItems:
print item.TextFrame.TextRange.Text
更新:回答OP的评论。
我认为代码的问题在于Find
的每行代码都会创建一个新的Find
对象。您必须创建一个Find
对象并将其绑定到一个名称,然后修改其属性并执行它。所以在你的代码中你应该有:
find = shp.TextFrame.TextRange.Find
find.Text = source
find.Replacement.Text = target
find.Execute(Replace=1, Forward=True)
或单行:
shp.TextFrame.TextRange.Find.Execute(FindText=source, ReplaceWith=target, Replace=1, Forward=True)
这两种方法都适用于我的测试代码。