Convert RTF data to unmarked up string Posted on November 12, 2013 by torrancejones 12345678static public string ConvertToText(string rtf) { using(RichTextBox rtb = new RichTextBox()) { rtb.Rtf = rtf; return rtb.Text; } } Catch ArgumentException for cases where the data isnt RTF