Created
May 11, 2020 17:45
-
-
Save compil3/235655a4626500fc8aebe5bd4ffb937c to your computer and use it in GitHub Desktop.
Nodes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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