04-18-2013, 01:11 PM
Hi Team,
I have a XML file as below :
Now I want to delete the node where the car parking is "Yes" and save it as a new XML file.
Can you please suggest anything on the same.
I have a XML file as below :
Code:
<?xml version="1.0" encoding="111"?>
<Fileheaderproperty>
<type>
<Car>2</Car>
<parking>no</parking>
<rent>560</rent>
</type>
<type>
<Car>3</Car>
<parking>no</parking>
<rent>750</rent>
</type>
<type>
<Car>4</Car>
<parking>Yes</parking>
<rent>600</rent>
</type>
<type>
<Car>5</Car>
<parking>no</parking>
<rent>260</rent>
</type>
<Fileheaderproperty>
Can you please suggest anything on the same.