Get the value of all td tags using xpath and html agilty
See the question and my original answer on StackOverflowI think what you want is this:
HtmlNodeCollection collection = doc.DocumentNode.SelectNodes("//table[@class='string_14']//td[@class='tab_space']");
You can consult XPath Tutorial for more on this.