On Aug 18, 2006, at 7:00 AM, fabsy wrote: > Hey.. I just installed hpricot but it acts strange.. > I tried an example from > http://code.whytheluckystiff.net/hpricot/wiki/HpricotBasics but it > didn't work.. It just gave me "test.rb:1: parse error, unexpected > tIDENTIFIER, expecting $"... Maybe you better show us your actual code. There are several examples on that page. Look at this: require 'rubygems' require 'hpricot' require 'open-uri' doc = Hpricot(open("http://qwantz.com/")) (doc/"p/a/img").each do |img| puts img.attributes['class'] end It works although it doesn't actually find and image with a 'class' attribute. -- Seven Deadly Sins? I thought it was a to-do list!