I have a XML document in the following general format:
<Alpha>
<Beta>
<Gamma>
<Delta id="1">
...
</Delta>
<Delta id="2">
...
</Delta>
...
</Gamma>
</Beta>
</Alpha>
I'm looking for a way to find all of the Delta elements (regardless of how many there are) and increase the value of the id attribute by a specific value, x, and then save the document. What's the fastest way to achieve this?