私は次のxmlを持っています
<?xml version="1.0" encoding="utf-8"?>
<Response>
<Function Name="GetSomethingById">
<something idSome="1" Code="1" Description="TEST01" LEFT="0" RIGHT="750" />
</Function>
</Response>
<something>
そして、ノードの属性をハッシュとして必要です。私は以下のようにしようとしています
my $xpc = XML::LibXML::XPathContext->new(
XML::LibXML->new()->parse_string($xml) # $xml is containing the above xml
);
my @nodes = $xpc->findnodes('/Response/Function/something');
$nodes[0]->getAttributes
私は、何か助けがあるようなものを期待していますか?