When I try to evaluate a simple XPath, XML Copy Editor return an incorrect result that is an incremental concatenation of each result item.
For example, this xml:
<?xml version="1.0" encoding="UTF-8"?>
<datos>
<otros>
<info id="1" value="a" />
<info id="2" value="a" />
<info id="3" value="a" />
</otros>
</datos>
And this XPath:
/datos/otros/info[@value='a']
Get as result this:
<info id="1" value="a"/>
<info id="1" value="a"/><info id="2" value="a"/>
<info id="1" value="a"/><info id="2" value="a"/><info id="3" value="a"/>
But it sould be something like:
<info id="1" value="a"/>
<info id="2" value="a"/>
<info id="3" value="a"/>
I'm using XML Copy Editor version 1.2.0.9 in Ubuntu 12.04.
Thank you for reporting this bug. It will be fixed in the next release.
[8233e5]
Please feel free to reopen it if it is not fixed.
Related
Commit: [8233e5]