From: Gregor Kopp Date: 2006-03-08T18:03:42+09:00 Subject: Re: Is there link extractor or similar html processing libs for Ruby gem install mechanize require 'mechanize' browser = WWW::Mechanize.new url = "http://www.eineseite.de" page = browser.get url page.links.each do |link| puts "#{url}#{link.href}" end take also a look at html tokenizer from gems Desireco schrieb: > Hi, > > in cool Perl there are a bunch of libraries that process html files and > > help you when you need to extract info. I remember hearing something > for Ruby as well, if someone had experience with this, it would help me > > if he could point me in right direction. Basically I need to extract > links and info from html pages. > > Thanks. > > > Zeljko Dakic > http://www.dakic.com >