I would like to get a Groovy NodeChild that represents, e.g., a body tag.

However, if I do

html=new XmlSlurper().parseText(blah)

I get html which is a NodeChild.

However html.body is a NodeChildren tag, and I can't seem to get a NodeChild.

Much help appreciated!

Thank you Misha

link|improve this question

66% accept rate
feedback

1 Answer

up vote 0 down vote accepted

This works but there must be something simpler:

def body=html.children().find { it.name()=="BODY" }

Misha

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.