in reply to Finding data

try HTML::TokeParser:

here's and example:

require HTML::TokeParser; my $obj = HTML::TokeParser->new($File); my $token = $obj->get_tag("title"); my $title_text = $token->get_text("/title");

He who asks will be a fool for five minutes, but he who doesn't ask will remain a fool for life.

Chady | http://chady.net/