Dermot wrote:
Hi,I used LWP to GET a source document. The document is styled HTML with a form. I'm after the field value data. The question is what should I do with to work with this document source? Life would be easier if the source were XML but I was wondering is there is a way or module for dealing with in this form. my $res = $ua->request($req); if ($res->is_success) { print $res->decoded_content; ...
Take a look at HTML::TreeBuilder Dermot. It may be a steep learning curve, but it's the nicest module I know for your purpose.
Rob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/
