Skip to content

Instantly share code, notes, and snippets.

@ohta-rh
Created November 30, 2013 05:44
Show Gist options
  • Save ohta-rh/7715792 to your computer and use it in GitHub Desktop.
Save ohta-rh/7715792 to your computer and use it in GitHub Desktop.
2chのスレGET
require 'open-uri'
require 'nokogiri'
itiran = open("http://hayabusa.2ch.net/news4vip/subback.html").read
doc = Nokogiri::HTML.parse(itiran)
doc.css('a').each do |anchor|
p anchor[:href]
p anchor.children.first.text
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment