How to find and replace text with page break in a Word document?
Syncfusion® Essential® DocIO is a .NET Core Word library used to create, read, and edit Word documents programmatically without Microsoft Word or interop dependencies. Using this library, you can find and replace text with page breaks in a Word document in C#.
Steps to find and replace text with page break in a Word document:
- Create a new C# .NET Core console application project.
- Install the Syncfusion.DocIO.NET.Core NuGet package as a reference to your ASP.NET Core application from NuGet.org.
- Include the following namespaces in the Program.cs file:
C#
using Syncfusion.DocIO; using Syncfusion.DocIO.DLS;
- Use the following code snippet to find and replace text with page break in the Word document:
C#
using (FileStream fileStreamPath = new FileStream(Path.GetFullPath(@"../../../Data/Input.docx"), FileMode.Open, FileAccess.Read, FileShare.ReadWrite)) { // Open an existing Word document. using (WordDocument document = new WordDocument(fileStreamPath, FormatType.Docx)) { // Add new paragraph to the document section. WParagraph paragraph = document.Sections[0].AddParagraph() as WParagraph; // Add the page break. paragraph.AppendBreak(BreakType.PageBreak); // Create text body part. TextBodyPart bodyPart = new TextBodyPart(document); bodyPart.BodyItems.Add(paragraph); // Replace all entries of a given regular expression text with the text body part. document.ReplaceSingleLine(new Regex("<<(.*)>>"), bodyPart); // Create a file stream. using (FileStream outputFileStream = new FileStream(Path.GetFullPath("../../../Sample.docx"), FileMode.Create, FileAccess.ReadWrite)) { // Save the Word document to the file stream. document.Save(outputFileStream, FormatType.Docx); } } }
A complete working sample to find and replace text with page break in a Word document in C# can be downloaded from GitHub.
By executing the program, you will get the output document as follows:
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.
See Also:
How to replace particular text with a hyperlink in a Word document
How to find and replace text inside a table in a Word document
How to find and replace text in headers and footers of a Word document
How to replace text in a Word document with HTML?
How to find and replace text with a page break in a Word document?
How to find and replace text with content control in a Word document?
How to find and replace text in a Word document with text from a database?
Starting with v16.2.0.x, if you reference Syncfusion® assemblies from a trial setup or from the NuGet feed, include a license key in your projects. Refer to the link to learn about generating and registering the Syncfusion® license key in your application to use the components without a trial message.