hi all,
i want to parse the XML file. i am enable to parse simple XML file. but there are little complex XML file
<?xml version="1.0" encoding="utf-8"?>
<Level>
<p id='327'>
<Item>
<Id>5877</Id>
<Type>0</Type>
<Icon>---</Icon>
<Title>Btn1Item1</Title>
</Item>
<Item>
<Id>5925</Id>
<Type>0</Type>
<Icon>---</Icon>
<Title>Btn1Item4</Title>
</Item>
</p>
</Level>
Here i want to get the value of <p>
tag (i mean i want to get the value of attribute id which is 327)
Please suggest