in reply to Parsing Text from website
For more complex and robust matches, the CPAN modules HTML::TokeParse, HTML::SimpleParse, and HTML::Parser will come in handy.if ($result =~ m!<strong>(.*?)</strong>!) { $text = $1; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: Parsing Text from website
by BBQ (Curate) on Apr 24, 2000 at 21:00 UTC |