讀取word文檔並提取和寫入資料(基於python 3.6)

來源:互聯網
上載者:User

標籤:資料   一段   空格   段落   soft   寫入   基於   utf-8   delete   

#!/usr/bin/python3
# -*- coding: utf-8 -*-
# @File : delete_file
# @Author : moucong
# @Date : 2018/4/1 16:33
# @Software: PyCharm

#讀取docx中的文本程式碼範例
import docx
import re

#擷取文檔
file=docx.Document("E:\\python_word\\word.docx")
print("段落數:"+str(len(file.paragraphs))) #輸出段落數
file_word = docx.Document()

#輸出每一段的內容
for para in file.paragraphs:
print(para.text)

#輸出段落編號及段落內容
para_data = []
for i in range(len(file.paragraphs)):
# for j in map(lambda x:x.split(‘ ‘),file.paragraphs[i].text):
para_single = file.paragraphs[i].text.split(‘ ‘)
while ‘‘ in para_single: # 移除空格
para_single.remove(‘‘)
# para_data.append(para_single)
for data_number in range(len(para_single)):
data_num = re.findall(r"\d", para_single[data_number])
data_num = ‘‘.join(data_num)
para_data.append(data_num + ‘ ‘)
file_word.add_paragraph(para_data)
file_word.save("E:\\python_word\\number.docx")

讀取word文檔並提取和寫入資料(基於python 3.6)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.