Articles in this section
Category / Section

How to parse word document using C#, VB.NET?

2 mins read

Syncfusion® Essential® DocIO is a .NET Word library used to create, read, and edit Word documents programmatically without Microsoft Word or interop dependencies. Using this library, you can parse Word document in C# and VB.NET.

Steps to parse Word document using C#:

  1. Create a new C# console application project.Create Console application in Visual Studio
  2. Install Syncfusion.DocIO.WinForms NuGet package as a reference to your .NET Framework applications from the NuGet.org.Add DocIO NuGet package reference to the project
  3. Include the following namespace in the Program.cs file.

C#

using Syncfusion.DocIO.DLS;
using System.IO;

VB

Imports Syncfusion.DocIO.DLS
Imports System.IO
  1. Use the following code to parse Word document.

C#

//Opens the Word template document
using (WordDocument document = new WordDocument("Template.docx"))
{
    //Gets the string that contains whole document content as text
    string text = document.GetText();
    //Create a new text file and write specified string in it
    File.WriteAllText("Result.txt", text);
}

VB

'Opens the Word template document
Using document As WordDocument = New WordDocument ("Template.docx")
    'Gets the string that contains whole document content as text
    Dim text As String = document.GetText
    'Create a new text file and write specified string in it
    File.WriteAllText("Result.txt", text)
End Using

A complete working example to parse Word document using C# can be downloaded from parse Word document.zip

Input Word document as follows. Template Word document to parse

By executing the program, you will get the output text file as follows. Parse Word document as text file

Take a moment to peruse the documentation, where you can find basic Word document processing options along with features like mail merge, merge and split documents, find and replace text in the Word document, protect the Word documents, and most importantly PDF and Image conversions with code examples.

Explore more about the rich set of Syncfusion® Word Framework features.

Note:

Starting with v16.2.0.x, if you reference Syncfusion® assemblies from trial setup or from the NuGet feed, include a license key in your projects. Refer to link to learn about generating and registering Syncfusion® license key in your application to use the components without trail message.

 

Conclusion

I hope you enjoyed learning about how to parse word document using C#, VB.NET.

You can refer to our Doclo feature tour page to know about its other groundbreaking feature representations. You can also explore our documentation to understand how to create and manipulate data.

For current customers, you can check out our components from the License and Downloads page. If you are new to Syncfusion®, you can try our 30-day free trial to check out our other controls.

If you have any queries or require clarifications, please let us know in the comments section below. You can also contact us through our support forumsDirect-Trac, or feedback portal. We are always happy to assist you!

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please  to leave a comment
Access denied
Access denied