I have an xml file where I need to strip out xml tags where if possible I can use a wild card because the data within the tags will be different information. See xml below:
<relationship relation="1">
<sourcedid>
<source>xxxxx</source>
<id>AbDT-1398</id> ***this data will be different for each grouping****
</sourcedid>
<label/>
</relationship>
Basically I need to search the xml file for the grouping and have a wild card character within the tags and remove the entire grouping. Throughout my xml the tag is listed but the data is what changes.