How to replace value in RTF document by another RTF in C# and .NET


Complete code

using System;
using System.IO;

namespace Sample
{
    class Test
    {

        static void Main(string[] args)
        {
			// Get your free 30-day key here:   
            // https://sautinsoft.com/start-for-free/
	
            // How to replace values in RTF document by another RTF content.
            // If you need more information about "HTML to RTF .Net" email us at:
            // support@sautinsoft.com	
            ReplaceValuesInRtf();
        }

        public static void ReplaceValuesInRtf()
        {
            SautinSoft.HtmlToRtf h = new SautinSoft.HtmlToRtf();

            // For example, we've RTF with such content "This is a sample footer as RTF document."
            // Let's replace the string "sample" by another RTF file.
            string sourceRtfFile = @"..\..\..\footer.rtf";
            string wherewithReplaceRtfPath = @"..\..\..\footer.rtf";
            string textToReplace = "sample";
            string resultRtfFile = "Result.rtf";
            
            h.MergeAndReplaceRtfFileFromFile(sourceRtfFile, textToReplace, wherewithReplaceRtfPath, resultRtfFile);

            // Show the result.
            System.Diagnostics.Process.Start(new System.Diagnostics.ProcessStartInfo(resultRtfFile) { UseShellExecute = true });
        }
    }
}

Download

Imports System
Imports System.IO

Namespace Sample
	Friend Class Test

		Shared Sub Main(ByVal args() As String)
			' Get your free 30-day key here:   
            ' https://sautinsoft.com/start-for-free/
	
			' How to replace values in RTF document by another RTF content.
			' If you need more information about "HTML to RTF .Net" email us at:
			' support@sautinsoft.com	
			ReplaceValuesInRtf()
		End Sub

		Public Shared Sub ReplaceValuesInRtf()
			Dim h As New SautinSoft.HtmlToRtf()

			' For example, we've RTF with such content "This is a sample footer as RTF document."
			' Let's replace the string "sample" by another RTF file.
			Dim sourceRtfFile As String = "..\..\..\footer.rtf"
			Dim wherewithReplaceRtfPath As String = "..\..\..\footer.rtf"
			Dim textToReplace As String = "sample"
			Dim resultRtfFile As String = "Result.rtf"

			h.MergeAndReplaceRtfFileFromFile(sourceRtfFile, textToReplace, wherewithReplaceRtfPath, resultRtfFile)

			' Show the result.
			System.Diagnostics.Process.Start(New System.Diagnostics.ProcessStartInfo(resultRtfFile) With {.UseShellExecute = True})
		End Sub
	End Class
End Namespace

Download


If you need a new code example or have a question: email us at support@sautinsoft.com or ask at Online Chat (right-bottom corner of this page) or use the Form below:



Questions and suggestions from you are always welcome!

We are developing .Net components since 2002. We know PDF, DOCX, RTF, HTML, XLSX and Images formats. If you need any assistance with creating, modifying or converting documents in various formats, we can help you. We will write any code example for you absolutely free.