Extracting attributes of elements XML with different numbers of children
I have this XML file: <?xml version="1.0" encoding="UTF8"?> <locations> <loc loc_id="11703"> <height type="low">22.19</height> <height type="high">24.19</height> </loc> <loc loc_id="11702"> <height type="low">22.95</height> </loc> <loc loc_id="11702"> <height type="mid">24.4</height> </loc> <loc loc_id="11702"> <height type="high">24.95</height> </loc> <loc loc_id="11701"> <height type="low">17.65</height> <height type="mid">23.99</height> </loc> <loc loc_id="11700"> <height type="low">21.49</height> <height type="high">23.45</height> <height type="mid">23.3</height> </loc> <loc loc_id="11699"> <height type="low">21.65</height> <height type="high">24.14</height> </loc> </locations>… Read More Extracting attributes of elements XML with different numbers of children