in reply to Parsing Text from website

The <strong> tag, I guess? A regex which will handle only the simplest cases might be:
if ($result =~ m!<strong>(.*?)</strong>!) { $text = $1; }
For more complex and robust matches, the CPAN modules HTML::TokeParse, HTML::SimpleParse, and HTML::Parser will come in handy.

Replies are listed 'Best First'.
RE: Re: Parsing Text from website
by BBQ (Curate) on Apr 24, 2000 at 21:00 UTC
    Well put! I hadn't noticed the quotes had been bolded out too. He probably wrote "<strong>" and "</strong>"...

    Cheers!