Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've an xml file named doc.xml. From the xml file i need to take all the values of the repeating node. i've three nodes, i need to print all the values of each book node in each xml file. pls help me..

<?xml version="1.0" encoding="UTF-8"?> <catalog> <book id="001" lang="ENG"> <isbn>23-34-42-3</isbn> <regDate>1990-05-24</regDate> <title>Operating Systems</title> <publisher country="USA">Pearson</publisher> <price>400</price> <authors> <author>Ganesh Tiwari</author> </authors> </book> <book id="002"> <isbn>24-300-042-3</isbn> <regDate>1995-05-12</regDate> <title>Distributed Systems</title> <publisher country="Nepal">Ekata</publisher><price>500</price> <authors> <author>Mahesh Poudel</author><author>Bikram Adhikari</author> <author>Ramesh Poudel</author></authors> </book> </catalog>

share|improve this question

closed as not a real question by casperOne Jul 12 '12 at 12:34

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.