Skip to content

Instantly share code, notes, and snippets.

@seanho
Created December 15, 2009 10:52
Show Gist options
  • Save seanho/256852 to your computer and use it in GitHub Desktop.
Save seanho/256852 to your computer and use it in GitHub Desktop.
web = HtmlAgilityPack::HtmlWeb.new
doc = web.Load 'http://hk.news.yahoo.com/hongkong/index.html'
node = doc.DocumentNode.SelectSingleNode '/html/body/div/div[2]/div/div/div/div/div/div/div[2]'
node.ChildNodes.each do |n|
output.WriteLine n.InnerText
end
#output.WriteLine doc.DocumentNode.InnerHtml
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment