Skip to content

Instantly share code, notes, and snippets.

@pinscript
Created March 30, 2013 14:34
Show Gist options
  • Select an option

  • Save pinscript/5276927 to your computer and use it in GitHub Desktop.

Select an option

Save pinscript/5276927 to your computer and use it in GitHub Desktop.
var doc = new HtmlDocument();
doc.LoadHtml(html);
var nodes = doc.DocumentNode.SelectNodes("//span[contains(@class,'video-title')]");
Console.WriteLine("Node count: {0}", nodes.Count); // 1
Console.WriteLine("Title: {0}", nodes.First().InnerText); // Bob Marley - Buffalo soldier
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment