Skip to content

Instantly share code, notes, and snippets.

@oa414
Created February 6, 2014 03:24
Show Gist options
  • Select an option

  • Save oa414/8837949 to your computer and use it in GitHub Desktop.

Select an option

Save oa414/8837949 to your computer and use it in GitHub Desktop.
require "nokogiri"
require "open-uri"
doc = Nokogiri::HTML(open("http://www.longbuluo.com/movie/34644.html"))
doc.css("a").each do |link|
if link["href"] and link["href"].start_with?("ed2k")
puts link["href"]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment