How to delete the specific node from the xml file ?? keeping child node as it is
hi , this xml , need delete specific node form following xml file. wants delete node <aniruddha> following xml. <?xml version="1.0" standalone="yes"?> <dataset> <customer> <id>0</id> <item>item0</item> <aniruddha xmlns:xsi="http://www.w3.org/2001/xmlschema-instance" xmlns:xsd="http://www.w3.org/2001/xmlschema"> <aniruddha> <id>1</id> <name>aniruddha</name> </aniruddha> </aniruddha> </customer> my output sholud looks <?xml version="1.0" standalone="yes"?> <dataset> <customer> <id>0</id> <item>item0</item> <aniruddha> <id>1</id> <name>aniruddha</name> </aniruddha> </customer> can me ? thnx in adnavce move child nodes parent node, remove anir...