http://qs321.pair.com?node_id=784655


in reply to Re^2: XML::LibXML- Escape Empty Tags
in thread XML::LibXML- Escape Empty Tags

So I guess you didn't try anything?
It seemed from the code you posted that you were somewhat familiar with XML::LibXML.
Anyway, if you want to access text try (in your loop):
$child->textContent;
Or if you want to get the text node try (anywhere after you parse the file):
$tree->findnodes("//imageURL_med/text()");

Replies are listed 'Best First'.
Re^4: XML::LibXML- Escape Empty Tags
by khalistoo (Initiate) on Jul 31, 2009 at 08:36 UTC
    I ve just discovered the module yesterday and tried to actually output something :D, after reading quite few things i tried the hasChild function to check if there is data in those tag but couldn't make it work,. So i ve tried but my knowledge and skills are very limited. Thanks for the tip though