in reply to Parsing XML that contains HTML
To get the URL from the href attribute, I think it is:
my $url = $elt->att('href');
$elt->text is the right way to get the text for the link, which is empty in this case.
For the HTML page pointed to, you will need to fetch it with LWP.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Parsing XML that contains HTML
by ruhk (Scribe) on Jul 21, 2004 at 17:23 UTC |