How can I get the values of all nodes called “title” from the XML below ?
<bookstore>
<bookA>
<title> Title Book A</title>
<desc> Book A </desc>
<bookA>
<bookB>
<title> Title Book B</title>
<desc> Book B </desc>
<bookB>
</bookstore>
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Try:
bookstore//title//means any child (including grandchildren) namedtitleBy the way, you didn’t close off the book elements.