I've been searching for a while. Is there a way to directly retrieve a child based on the text value of a tag?
For example:
<a>
<b>
<c>h</c>
</b>
<b>
<c>j</c>
</b>
</a>
And say I want to retrieve the child be whose "c" text value == j. Is there a way of doing this other than having to get all the "b" children and looping through them and checking the c value?