I have two different XML files , the first one is a template xml and the second one is the actual xml. The template xml contains only the elements where as the actual xml contains some of the elements present in template xml as shown below in the xml files . For each element present in the template xml i want to look at the actual xml and see if that element is present and if so then extract its value and print or else just print empty space as shown in the output
Template.xml
<personinfo>
<person>
<name><name>
<age></age>
<address>
<street></street>
<city></city>
<address>
</person>
<person>
<name><name>
<age></age>
<address>
<street></street>
<city></city>
<address>
</person>
<person>
<name><name>
<age></age>
<address>
<street></street>
<city></city>
<address>
</person>
</personinfo>
Actual.xml
<personinfo>
<person>
<name>tom<name>
<age>26</age>
<address>
<street>main street</street>
<city>washington</city>
<address>
</person>
<person>
<name>mike<name>
<age>30</age>
<address>
<street>first street</street>
<city>dallas</city>
<address>
</person>
</personinfo>
Expected output
tom,26,main street,washington,mike,30,first street,dallas,,,,