How will i extract the data from the docx file using DocumentFormat.OpenXml -details below

前端 未结 1 1206
借酒劲吻你
借酒劲吻你 2021-01-07 15:12

I have a Docx file created by adding the xml schema. I am giving you the link of the docx file .\"enter

相关标签:
1条回答
  • 2021-01-07 16:08

    you have to explore the DocumentFormat.OpenXml for the extraction of your data from the docx file. Or Another method is that,

    First convert the extension of the docx file to .zip . After opening the zip file open the file document.xml. In this file you will find all your data . Now you just need to do is to read the xml file in c# and extract the data. You use xmlDocument class and extract The data

    I think it will be useful.

    0 讨论(0)
提交回复
热议问题