This is a procedure for stripping out HTML tags while preserving the most basic formatting.
In other words, it converts HTML to plain text.
// Return Plain Text
private string ConvertHtmlToPlainText(string htmlText)
{
return System.Text.RegularExpressions.Regex.Replace(htmlText, “<[^>]*>”, string.Empty);
}
Enjoy!