Skip to content

Instantly share code, notes, and snippets.

@compil3
Created November 11, 2013 19:40
Show Gist options
  • Save compil3/7419086 to your computer and use it in GitHub Desktop.
Save compil3/7419086 to your computer and use it in GitHub Desktop.
var cells = htmlDoc.DocumentNode
.SelectNodes("//table[@class='data stats']/tbody/tr")
.Select(node => new { playerRank = node.InnerText.Trim()})
.ToList();
foreach (var cell in cells)
{
Console.WriteLine("Rank: " + cell.playerRank);
Console.WriteLine();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment