天宫鹤

Python使用win32com全文替换文档内容

# 全文替换文档内容
def update_replace_all(_old, _new):
    wdApp.Selection.Find.ClearFormatting()
    wdApp.Selection.Find.Replacement.ClearFormatting()
    wdApp.Selection.Find.Execute(_old, False, False, False, False, False, False, 1, False, _new, 2)

Execute函数解释:https://learn.microsoft.com/zh-cn/office/vba/api/word.find.execute

posted on 2024-08-03 08:50  GoGrid  阅读(39)  评论(0编辑  收藏  举报

导航