Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re: request for help on working with XML::Simple

by ramrod (Curate)
on Aug 07, 2009 at 17:49 UTC ( [id://786858]=note: print w/replies, xml ) Need Help??


in reply to request for help on working with XML::Simple

Don't forget XML::LibXML
use XML::LibXML; #Parse XML my $template = 'xmldocument.xml'; my $parser = XML::LibXML->new(); my $pdoc = $parser->parse_file($template); #Remember the namespace my $rdoc = XML::LibXML::XPathContext->new($pdoc->documentElement()); $rdoc->registerNs( ns => 'http://url/Schema' ); #Find desired node(s) my @stuff = $rdoc->findnodes("//ns:source_name"); #Print results for(@stuff) { my $data = $_->textContent; print"$data\n"; }

Replies are listed 'Best First'.
Re^2: request for help on working with XML::Simple
by Angharad (Pilgrim) on Aug 07, 2009 at 17:58 UTC
    Thanks for all the suggestions so far. Much appreciated. I've only started looking at xml today so you can imagine how much in the dark I'm been feeling. You guys are fab. Thanks. :D. Any good websites or books out there I should know about to learn more?
        Thats great. Thanks

Log In?
Username:
Password:

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

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

    No recent polls found