Hola a todos:
Estoy leyendo un documento en XML (parseado con LibXML), y tengo algún problemilla con XPath.
Suponiendo que una muestra del doc XML que tengo es:
<?xml version="1.0" encoding="iso-8859-1"?>
<tokens>
<w id="w1" tokentype="HAS_MAI">
<forma>Baina</forma>
<anbtal talde_zenb="13">
<tamaina>002</tamaina>
</anbtal>
</w>
<w id="w2">
...
</w>
</tokens>
Hago:
use XML::LibXML;
use strict;
my $parser = XML::LibXML->new();
$parser->keep_blanks(0);
my $doc = $parser->parse_file("/home/file.xml");
my $root = $doc->getDocumentElement();
for (my $i = 1; $i < 100; $i ++){ ...