Thread Problem mit XMLNS in XML Dateien
(7 answers)
Opened by tk102 at 2020-02-20 08:42 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'); |