Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: XML::LibXML- Escape Empty Tags

by ramrod (Curate)
on Jul 30, 2009 at 14:35 UTC ( [id://784627]=note: print w/replies, xml ) Need Help??


in reply to XML::LibXML- Escape Empty Tags

What all have you tried? I would start with
$node->textContent;
or
$tree->findnodes("//imageURL_med/text()");

Replies are listed 'Best First'.
Re^2: XML::LibXML- Escape Empty Tags
by ikegami (Patriarch) on Jul 30, 2009 at 16:21 UTC
    I don't think the second will work, because I don't think there's a text node to match.
Re^2: XML::LibXML- Escape Empty Tags
by Anonymous Monk on Jul 30, 2009 at 15:21 UTC
    I have no idea as to where i need to implement this line, can you just develop or explain a bit more this path, i would try it if at least i knew where to try :) Sorry i am completly lost.
      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()");
        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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://784627]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (4)
As of 2024-04-18 04:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found