Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Stepping up from XML::Simple to XML::LibXML

by sjf4 (Initiate)
on Apr 18, 2013 at 23:04 UTC ( [id://1029432]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      use XML::LibXML;
    
    ...
        my($title) = $book->findnodes('./title');
        print $title->to_literal, "\n" 
      }
    
  2. or download this
      use XML::LibXML;
    
    ...
        my($title) = $book->getChildrenByTagName('title');
        print $title->to_literal, "\n" 
      }
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (6)
As of 2024-04-16 10:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found