I have an xml file that is containing a root element, and sub elements of sub elements.
For example:
<root>
<subRoot>
<Modified name="Set" text="Bla">
<Action name="Bla2"/>
</Modified>
</subRoot>
</root>
If i want to delete all of the Action tags under Modified- How can i do that? Thanks.