I have an XML that is over 1.7 gigs in size, but most of the data in it is not relevant. I am looking for a tool or method I can use to delete entries based on the content of one of its descriptor nodes.
Example:
<?xml version="1.0" encoding="UTF-8"?>
<entries>
<entry>
<category>11 -1234</category>
<value>Some String</value>
</entry>
<entry>
<category>15 -5678</category>
<value>Some String</value>
</entry>
</entries>
I want to delete all entries that have a category starting with 11.