Hi perlmonks
It seems that my code is not able to parse this XML because of the "xmlns="urn:foo:names:tc:doc:document:1.2""
I tried to use registerNs but no luck :(
Could you please help me on this?
Here is the XML
<?xml version="1.0" encoding="UTF-8"?>
<doc version="1.2" xmlns="urn:foo:names:tc:doc:document:1.2" xmlns:okp
+="ok-fr:doc-extensions" xmlns:its="http://www.w3.org/2015/1115/its" x
+mlns:itsxlf="http://www.w3.org/do/its-doc/" its:version="2.0">
<body>
</body>
<body>
<node id="NFDBB2FA9-tu1" xml:space="preserve">
<node1>TEXT 1"</node1>
</node>
</body>
</doc>
And here is my code
use XML::LibXML;
my $dom = 'XML::LibXML'->load_xml(IO => *STDIN);
foreach my $tu ($dom->findnodes('/doc/body/node')) {
for my $node ($tu->findnodes('node1')) {
print "$node\n";
}
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.