I need to uncomment a portion of xml in a file that I am working with in NAnt. Heres a sample of the xml:
<navigation>
<!-- Navigation Section
<something name="" />
<something name="" />
-->
</navigation>
What I want to do is take the --> portion and move it next to "Navigation Section". A global find for --> won't work as there are many --> in the file, as well as under the navigation node. this end comment character is the last one in the navigation node.
Anyone?