如何將MS Word文檔中的數據轉換爲MS Excel,使用.net,實際上Word文檔具有某些數據,如行和列,而不使用表格。我想使用.NET將其轉換爲Excel工作表。請幫助我..Word to Excel using .net c#
0
A
回答
0
恐怕過去一直使用MS Word對象模型,除非數據是可以依賴的結構,比如表格,那麼您真的很難專注於將數據分割成行和列的一致可靠的分隔符。
不同文檔中的任何細微差別都會對您磨合任何此類分隔符的能力產生令人困惑的效果。您可能會在文檔或10中獲得某些內容,但您將來可能會遇到文檔,這些文檔會破壞最初實現的功能。
我知道這並沒有太大的幫助,但如果你追求它,這一個將會讓你長期失望。我對此表示歉意 - 對不起!
+0
嗨elphinum ..你說的是對的... – rampati30
相關問題
- 1. JSON to object using C#JavaScriptSerializer
- 2. asp net net core export to Excel
- 3. c#.net using asp:CompareValidator with dates
- 4. mySQL to XLS using PHP?
- 5. HTML to List using XMLWorker
- 6. VB .NET InvalisCastException using Microsoft.Office.Interop
- 7. xml to json using xslt
- 8. C++ To .Net
- 9. .Net Logger using DLL's
- 10. PDF to XML for table format using c#
- 11. .doc to pdf using python
- 12. EditText to String using Fragment
- 13. post to textfield using tcpdf
- 14. Vectorwise to Hive using Sqoop
- 15. gwt to android using phonegap
- 16. HTML to PDF using dompdf
- 17. cmyk to rgb using php
- 18. powershell word to pdf
- 19. C#to Word更改段落
- 20. 'Random'Orderby in webservice using LINQ To Entities
- 21. using System.Linq;在.NET
- 22. aspx to pdf using itextSharp 5.3.0
- 23. xls to JSON using python3 xlrd
- 24. html to pdf conversion using ephtmltopdf
- 25. datatable to Excel in c#
- 26. Word Automation to pdf
- 27. Carousel html to php using database
- 28. textview to pdf using a button
- 29. Angularjs - html to pdf using pdfmake.js
- 30. org.w3c.dom.Document to XML string using Groovy
這很大程度上取決於您使用的格式,但基本上我會嘗試解析文件的文本文件,如csv文件,然後將其導入到excel(本機支持csv),也許「僞造」一個文件流。另外,請看'Microsoft.Interop.Word'和'Microsoft.Interop.Excel'。 – phg