I'm using the MiniXML library to parse a XML file like
<?xml version="1.0" encoding="UTF-8"?>
<ooo_sheet>
<a1>Yes</a1>
<b1>1110</b1>
<c1>0008D1022162</c1>
<d1>Yes</d1>
<e1>No</e1>
<f1>Yes</f1>
<g1>Yes</g1>
<a1>Yes</a1>
<b1>1111</b1>
<c1>0008D1022164</c1>
<d1>Y1</d1>
<e1>Yes</e1>
<f1>No</f1>
<g1>No</g1>
<a1>Yes</a1>
<b1>1112</b1>
<c1>0008D1022164</c1>
<d1>Y1</d1>
<e1>Yes</e1>
<f1>No</f1>
<g1>No</g1>
</ooo_sheet>
It founds the first and third a1 but can not find second a1. Here is my code. Can ...