我的XML有问题,在某些情况下我收到带有额外数据的XML。我想删除它,因为它会导致我的结果崩溃。
<a:ExceptionInformation>
<a:ExceptionInformation>
<a:Description>XXX</a:Description>
<a:ExceptionType>YYY</a:ExceptionType>
</a:ExceptionInformation>
</a:ExceptionInformation>
<a:ExceptionInformation>
<a:ExceptionInformation>
<a:Description>AAA</a:Description>
<a:ExceptionType>YYY</a:ExceptionType>
</a:ExceptionInformation>
</a:ExceptionInformation>
我想找到ExceptionType == YYY的节点并删除所有:
<a:ExceptionInformation>
<a:ExceptionInformation>
<a:Description>AAA</a:Description>
<a:ExceptionType>YYY</a:ExceptionType>
</a:ExceptionInformation>
</a:ExceptionInformation>