in reply to RE: Re: URL's
in thread URL's

Try something like:
my($quote) = $source =~ /.*last: ([0-9.]+)/i;
where $source contains the source of the HTML page. You may need to tweak this a bit to match exactly what you want (for example, you want to match what comes after "last: "-- but how much do you want to match after that? The quote, which should, I guess, be a number?)