Skip to content

Instantly share code, notes, and snippets.

@compil3
Created May 11, 2020 17:45
Show Gist options
  • Save compil3/235655a4626500fc8aebe5bd4ffb937c to your computer and use it in GitHub Desktop.
Save compil3/235655a4626500fc8aebe5bd4ffb937c to your computer and use it in GitHub Desktop.
Nodes
List<List<string>> table = playerDoc.DocumentNode
.SelectSingleNode($"//*[@id='lg_team_user_leagues-{leagueId}']/div[4]/table/tbody")
.Descendants("tr")
.Skip(1)
//.Where(tr => tr.Elements("td").Count() > 1)
.Select(tr => tr.Elements("td")
.Select(td => td.InnerText.Trim()).ToList())
.ToList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment