I have the following XMl file:
Code:
<Vehicles>
<Company name="Ford">
<Vehicletype Vtype="Suv">
<Price>12000</Price>
</Vehicletype>
</Company>
<Company name="Ford">
<Vehicletype Vtype="Truck">
<Price>20000</Price>
</Vehicletype>
</Company>
</Vehicles>
And I am trying to transform it to:
Code:
<Vehicles>
<Company name="Ford">
<Vehicletype Vtype="Suv">
<Price>12000</Price>
</Vehicletype>
<Vehicletype Vtype="Truck">
<Price>20000</Price>
</Vehicletype>
</Company>
</Vehicles>
Any help would be appreciated
Thanks Gary