91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python怎么實現替換word中的關鍵文字

發布時間:2021-03-24 09:55:40 來源:億速云 閱讀:281 作者:小新 欄目:開發技術

小編給大家分享一下python怎么實現替換word中的關鍵文字,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

環境:Python3.6

本文主要是通過win32com操作word,對word中進行常用的操作。本文以替換為例,講解一下如何使用Python在word中使用“通配符模式”(類似于正則表達式)替換文本內容。

#!/usr/bin/env python
# -*- coding:utf-8 -*-
import os
import win32com
from 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 # 后臺運行,不顯示
        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()  # 創建新的文檔
                self.doc.SaveAs(filename)
        else:
            self.doc = self.xlApp.Documents.Add()
            self.filename = ''
 
    def add_doc_end(self, string):
        '''在文檔末尾添加內容'''
        rangee = self.doc.Range()
        rangee.InsertAfter('\n' + string)
 
    def add_doc_start(self, string):
        '''在文檔開頭添加內容'''
        rangee = self.doc.Range(0, 0)
        rangee.InsertBefore(string + '\n')
 
    def insert_doc(self, insertPos, string):
        '''在文檔insertPos位置添加內容'''
        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--區分大小寫,
        # True--完全匹配的單詞,并非單詞中的部分(全字匹配),
        # True--使用通配符,
        # True--同音,
        # True--查找單詞的各種形式,
        # True--向文檔尾部搜索,
        # 1,
        # True--帶格式的文本,
        # new_string--替換文本,
        # 2--替換個數(全部替換)
        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):
        '''保存文件、關閉文件'''
        self.save()
        self.xlApp.Documents.Close()
        self.xlApp.Quit()
 
 
if __name__ == '__main__':
 
    # path = 'E:\\XXX.docx'
    path = 'E:/XXX.docx'
    doc = RemoteWord(path)  # 初始化一個doc對象
    # 這里演示替換內容,其他功能自己按照上面類的功能按需使用
 
    doc.replace_doc(' ', '')  # 替換文本內容
    doc.replace_doc('.', '.') # 替換.為.
    doc.replace_doc('\n', '')  # 去除空行
    doc.replace_doc('o','0')  # 替換o為0
    # doc.replace_docs('([0-9])@[、,,]([0-9])@', '\1.\2')  使用@不能識別改用{1,},\需要使用反斜杠轉義
    doc.replace_docs('([0-9]){1,}[、,,.]([0-9]){1,}', '\\1.\\2')  # 將數字中間的,,、.替換成.
    doc.replace_docs('([0-9]){1,}[舊]([0-9]){1,}', '\\101\\2')   # 將數字中間的“舊”替換成“01”
    doc.close()

看完了這篇文章,相信你對“python怎么實現替換word中的關鍵文字”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

巧家县| 象山县| 乾安县| 靖州| 弥勒县| 大英县| 荆门市| 正定县| 红安县| 太保市| 博爱县| 达孜县| 临猗县| 郸城县| 温宿县| 甘孜| 司法| 南宫市| 衡山县| 峨眉山市| 玉屏| 会理县| 江川县| 西林县| 武冈市| 阿拉善左旗| 治多县| 南岸区| 蛟河市| 定西市| 颍上县| 阿克苏市| 上蔡县| 左云县| 江北区| 来凤县| 太原市| 雷波县| 延安市| 普兰店市| 肥城市|