givin this file.xml
<session id = 1111>
<query text = text1 >
<response>
firstresponse1
</response>
<response>
secondresponse1
</response>
</query>
<query text = secondtext >
<response>
!!!aresponse2!!!
</response>
<response>
!!!aresponse3!!!
</response>
</query>
<query text = thirdtext>
<response>
firstreponse3
</response>
<response>
secondresponese4
</response>
</query>
</session>
i want to get both response tags in secondtext
output :
!!!aresponse2!!!
!!!aresponse3!!!
.
what is the most efficient way to do that ?