Convert RTF to Text

If you need to convert RTF to text, here is a simple way of doing it:

    Public Shared Function ConvertRtfToText(ByVal input As String) As String
      Dim returnValue As String = String.Empty
      Using converter As New System.Windows.Forms.RichTextBox()
        converter.Rtf = input
        returnValue = converter.Text
      End Using
      Return returnValue
    End Function

Tip Submitted By: David McCarter

This code can be found in the open source dotNetTips.Utility assembly


Discover more from dotNetTips.com

Subscribe to get the latest posts sent to your email.

3 thoughts on “Convert RTF to Text

Leave a reply to T P Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.