using System.Text.RegularExpressions;
public static void Main()
var html = @"http://www.writeurl.com/publish/9tu7jqgpv42s3foxgo93";
HtmlWeb web = new HtmlWeb();
var htmlDoc = web.Load(html);
var node = htmlDoc.DocumentNode.SelectSingleNode("//body/div/div");
foreach (string line in node.InnerHtml.Split(new string[] { "<br>", "</br>" }, StringSplitOptions.None))
string noHTML = Regex.Replace(line, @"<[^>]+>| ", "").Trim();
Console.WriteLine(noHTML);