Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^6: XML compare with a key

by haukex (Archbishop)
on Apr 02, 2019 at 13:01 UTC ( [id://1232006]=note: print w/replies, xml ) Need Help??


in reply to Re^5: XML compare with a key
in thread XML compare with a key

I am looking forward to your answer to the OP's question based on XML::Rules.

I've posted about XML::Rules as a replacement for XML::Simple before: Re: What is correct way to reference?, Re^2: hashref with(out) arrays. The following at least generates a consistent Perl data structure, and can be adapted as needed.

use warnings; use strict; use XML::Rules; use Data::Dump; my $parser = XML::Rules->new( stripspaces => 3|4, rules => [ _default => 'raw' ], ); dd $parser->parse(<<'ENDXML'); <xmltop> <xmlbody> <tag1>jdjdjdjd</tag1> <tag2>dkdkkd</tag2> </xmlbody> </xmltop> ENDXML __END__ [ "xmltop", { _content => [ [ "xmlbody", { _content => [ ["tag1", { _content => "jdjdjdjd" }], ["tag2", { _content => "dkdkkd" }], ], }, ], ], }, ]

Update: One possible caveat here is that if an XML element has an attribute _content, then its value will be prepended to the node's text content.

Replies are listed 'Best First'.
Re^7: XML compare with a key
by hdb (Monsignor) on Apr 02, 2019 at 13:04 UTC

    That is a useful script to keep in the library. Many thanks!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (5)
As of 2025-05-16 17:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.