Hi,
I want to retrieve all the values of
tag attr3 in the below xml.Can anybody please help me out on this?Thanks in advance!!
I want to retrieve all the values of
tag attr3 in the below xml.Can anybody please help me out on this?Thanks in advance!!
Code:
<?xml version="1.0" encoding="ISO-8859-15" ?>
<Roottag>
<Subtag>
<attr1>2.3</attr1>
<attr2>0.0</attr2>
<attr3>
<string>xyz</string>
<string>abcd</string>
<string>a1234</string>
</attr3>
</Subtag>
<anothertag1>
<value>0</value>
<value1>3098</value1>
</anothertag1>
</Roottag>
Comment