I need to remove the attributes from a body node in some parsed HTML (converted to XML).

link|improve this question

65% accept rate
feedback

2 Answers

Call the attributes() on the element that contains the attribute and then call remove('attr name') as shown below.

attributes().remove('attr name')

You can read more details here.

link|improve this answer
Ah, I couldn't see the attributes() method in the documentation. Thanks for the pointer and also see the final method I came up with. – Peter Kelley Dec 20 '11 at 23:02
feedback
/**
 * Remove all attributes from the root body tag
 */
def removeBodyAttributes() {
    def attributeNames = bodyXml.attributes().collect {it.key}
    println attributeNames
    println bodyXml.attributes()
    attributeNames.each {bodyXml.attributes().remove(it)}
    println bodyXml.attributes()
}
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.