Wouldn't you know it :) xpath allows ignoring namespaces by using function s name and local-name, and the current node (.) comes in handy , heady even
#!/usr/bin/perl --
use strict; use warnings;
use XML::LibXML;
my $doc = XML::LibXML->new()->parse_string(
q{<?xml version='1.0' ?>
<roshambo xmlns="http://example.com/roshambo">
<sham>
<bo name="40" />
<bo name="2" />
</sham>
<sham xmlns:ftt="http://example.com/roshambo">
<ftt:bo name="forty" />
<ftt:bo name="two" />
</sham>
</roshambo>
}
);
for my $name ( $doc->findnodes( q{//*[local-name()="bo"]/@name} ) ) {
printf "%-25s %s\n", $name->nodePath, $name->nodeValue;
}
print "\n\n";
for my $node ( $doc->findnodes( q{//*[name()="sham"]} ) ) {
print "@{[ $node->nodePath ]}\n";
## any children ## ./*
## any descendants ## .//*
## anywhere ## //*
for my $name ( $node->findnodes( q{./*[local-name()="bo"]/@name} )
+ ) {
printf "%-25s %s\n", $name->nodePath, $name->nodeValue;
}
print "\n\n";
}
__END__
/*/*[1]/*[1]/@name 40
/*/*[1]/*[2]/@name 2
/*/*[2]/ftt:bo[1]/@name forty
/*/*[2]/ftt:bo[2]/@name two
/*/*[1]
/*/*[1]/*[1]/@name 40
/*/*[1]/*[2]/@name 2
/*/*[2]
/*/*[2]/ftt:bo[1]/@name forty
/*/*[2]/ftt:bo[2]/@name two
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
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.
|
|