本篇內(nèi)容主要講解“怎么用python替換word中的關(guān)鍵文字”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實(shí)用性強(qiáng)。下面就讓小編來帶大家學(xué)習(xí)“怎么用python替換word中的關(guān)鍵文字”吧!
站在用戶的角度思考問題,與客戶深入溝通,找到武昌網(wǎng)站設(shè)計與武昌網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站設(shè)計、網(wǎng)站建設(shè)、外貿(mào)網(wǎng)站建設(shè)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、申請域名、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋武昌地區(qū)。環(huán)境:Python3.6
本文主要是通過win32com操作word,對word中進(jìn)行常用的操作。本文以替換為例,講解一下如何使用Python在word中使用“通配符模式”(類似于正則表達(dá)式)替換文本內(nèi)容。
#!/usr/bin/env python# -*- coding:utf-8 -*-import osimport win32comfrom win32com.client import Dispatch# 處理Word文檔的類class RemoteWord: def __init__(self, filename=None): self.xlApp = win32com.client.Dispatch('Word.Application') # 此處使用的是Dispatch,原文中使用的DispatchEx會報錯 self.xlApp.Visible = 0 # 后臺運(yùn)行,不顯示 self.xlApp.DisplayAlerts = 0 #不警告 if filename: self.filename = filename if os.path.exists(self.filename): self.doc = self.xlApp.Documents.Open(filename) else: self.doc = self.xlApp.Documents.Add() # 創(chuàng)建新的文檔 self.doc.SaveAs(filename) else: self.doc = self.xlApp.Documents.Add() self.filename = '' def add_doc_end(self, string): '''在文檔末尾添加內(nèi)容''' rangee = self.doc.Range() rangee.InsertAfter('\n' + string) def add_doc_start(self, string): '''在文檔開頭添加內(nèi)容''' rangee = self.doc.Range(0, 0) rangee.InsertBefore(string + '\n') def insert_doc(self, insertPos, string): '''在文檔insertPos位置添加內(nèi)容''' rangee = self.doc.Range(0, insertPos) if (insertPos == 0): rangee.InsertAfter(string) else: rangee.InsertAfter('\n' + string) def replace_doc(self, string, new_string): '''替換文字''' self.xlApp.Selection.Find.ClearFormatting() self.xlApp.Selection.Find.Replacement.ClearFormatting() #(string--搜索文本, # True--區(qū)分大小寫, # True--完全匹配的單詞,并非單詞中的部分(全字匹配), # True--使用通配符, # True--同音, # True--查找單詞的各種形式, # True--向文檔尾部搜索, # 1, # True--帶格式的文本, # new_string--替換文本, # 2--替換個數(shù)(全部替換) self.xlApp.Selection.Find.Execute(string, False, False, False, False, False, True, 1, True, new_string, 2) def replace_docs(self, string, new_string): '''采用通配符匹配替換''' self.xlApp.Selection.Find.ClearFormatting() self.xlApp.Selection.Find.Replacement.ClearFormatting() self.xlApp.Selection.Find.Execute(string, False, False, True, False, False, False, 1, False, new_string, 2) def save(self): '''保存文檔''' self.doc.Save() def save_as(self, filename): '''文檔另存為''' self.doc.SaveAs(filename) def close(self): '''保存文件、關(guān)閉文件''' self.save() self.xlApp.Documents.Close() self.xlApp.Quit()if __name__ == '__main__': # path = 'E:\\XXX.docx' path = 'E:/XXX.docx' doc = RemoteWord(path) # 初始化一個doc對象 # 這里演示替換內(nèi)容,其他功能自己按照上面類的功能按需使用 doc.replace_doc(' ', '') # 替換文本內(nèi)容 doc.replace_doc('.', '.') # 替換.為. doc.replace_doc('\n', '') # 去除空行 doc.replace_doc('o','0') # 替換o為0 # doc.replace_docs('([0-9])@[、,,]([0-9])@', '\1.\2') 使用@不能識別改用{1,},\需要使用反斜杠轉(zhuǎn)義 doc.replace_docs('([0-9]){1,}[、,,.]([0-9]){1,}', '\\1.\\2') # 將數(shù)字中間的,,、.替換成. doc.replace_docs('([0-9]){1,}[舊]([0-9]){1,}', '\\101\\2') # 將數(shù)字中間的“舊”替換成“01” doc.close()
到此,相信大家對“怎么用python替換word中的關(guān)鍵文字”有了更深的了解,不妨來實(shí)際操作一番吧!這里是創(chuàng)新互聯(lián)建站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢,關(guān)注我們,繼續(xù)學(xué)習(xí)!
網(wǎng)站標(biāo)題:怎么用python替換word中的關(guān)鍵文字-創(chuàng)新互聯(lián)
瀏覽地址:http://aaarwkj.com/article36/gjpsg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供品牌網(wǎng)站設(shè)計、微信公眾號、網(wǎng)站排名、網(wǎng)站營銷、網(wǎng)站策劃、軟件開發(fā)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容