From: Stephane Elie Date: 2006-09-22T22:15:36+09:00 Subject: Re: Search string in HTML file Hi Jean, Here is my version of it: require 'open-uri' # this returns true if the string is found open('http://whatever').find { |line| line.match('value') } != nil -- Posted via http://www.ruby-forum.com/.