in reply to Re: HTML parsing OR capturing text from a string within tags
in thread HTML parsing OR capturing text from a string within tags
### $response->content has the webpage stored in it $a = HTML::Element->new('a', $response->content); $addr = $a->find('tag', 'title'); print $addr;
|
|---|