Thread Problem mit XMLNS in XML Dateien (7 answers)
Opened by tk102 at 2020-02-20 08:42

Daxim
 2020-02-20 10:08
#191400 #191400
User since
2007-08-01
114 Artikel
BenutzerIn
[Homepage]
user image
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
use XML::LibXML qw();
use XML::LibXML::XPathContext qw();

my $document = XML::LibXML->load_xml(string => \<<'');
<XML xmlns="http://de/vdvka/XMLSchema">
  <Tag>Hier steht eine Information</Tag>
</XML>

my $xpc = XML::LibXML::XPathContext->new($document);
$xpc->registerNs(ns => $document->documentElement->getAttribute('xmlns'));
print $xpc->findvalue('//ns:XML/ns:Tag');

View full thread Problem mit XMLNS in XML Dateien