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

I try to replace a destination XML node with a source XML node:

I tried: destination.childnodes(0).nodetypedvalue=source.childnodes(0).nodetypedvalue

That did work, but the formatting in the XML document changed. Everything is in one line.

Is there a way to replace one node with another one and keeping the formatting?

Thank you.

share|improve this question
2  
Formatting (line breaks and indenting) aren't significant in an XML document, so any processing will often remove it when you output the result. What you want is some way to "pretty print" your document. Here's one method: stackoverflow.com/questions/1118576/… – Tim Williams Oct 30 '12 at 15:48

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.