Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

First off I already know about the Node.asXML() method. Assuming I have a dom4j node and I wish to get at that nodes xml but none of its children's xml. So in the example below If I have Node B and I only want to get , do some stuff, then get . Basically I wish there was an asXMLBeforeChildren() and asXMLAfterChildren() methods. Any hints as to how I could implement this myself in dom4j.

<A>
<B prop="value">
<C>
</C>
</B>
</A>
share|improve this question
Have you tried cloning the Node and then removing the children from the clone? – John Apr 5 '10 at 22:30
That was one thought I had also but still then what would be a reliable way to know where the pre-children text ends and the post children text begins. Or is there a good way to do that? – startoftext Apr 6 '10 at 20:17

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.