public static void Main()
var testString = "<div>1. Click Insert and then choose "+
"the elements you want from the different galleries. "+
"Themes and styles also help keep your document coordinated.</div><br>"+
"<div>2.Click Insert and then choose the elements you want from the different galleries. "+
"Themes and styles also help keep your document coordinated."+"</div><br>";
Console.WriteLine(ConvertHTMLToText(testString));
public static string ConvertHTMLToText(string sourceText)
result = result.Replace("<div>", "\n");
result = result.Replace("<br>", "\n");
result = result.Replace("<div/>", "\n");
result = result.Replace("<br/>", "\n");
result = result.Replace("</div>", "\n");
result = result.Replace("</br>", "\n");
result = result.Replace("<p>", "\n\n");
result = result.Replace("<p/>", "\n\n");
result = result.Replace("</p>", "\n\n");