Thread [XML::LibXML] node->GetAttribute funktioniert nicht
(11 answers)
Opened by ariser at 2014-11-02 22:55 QuoteWieso ist denn das einen-Holzweg-erzeugend? Wenn du in der Doku zu XML::LibXML::Element nachsiehst, merkst du dass dort kein GetAttribute existiert ;) perldoc XML::LibXML::Element | grep GetAttribute perldoc XML::LibXML::Element | grep getAttribute $avalue = $node->getAttribute( $aname ); $avalue = $node->getAttributeNS( $nsURI, $aname ); $attrnode = $node->getAttributeNode( $aname ); $attrnode = $node->getAttributeNodeNS( $namespaceURI, $aname ); getAttribute $avalue = $node->getAttribute( $aname ); getAttributeNS $avalue = $node->getAttributeNS( $nsURI, $aname ); getAttributeNode $attrnode = $node->getAttributeNode( $aname ); getAttributeNodeNS $attrnode = $node->getAttributeNodeNS( $namespaceURI, $aname ); |