I have this XML file:
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<results>
<output>
<status>OK</status>
<usage>Please use it</usage>
<url/>
<language>english</language>
<category>science_technology</category>
<score>0.838661</score>
</output>
</results>
I want to remove the tags <output> </output> from this XML.
OUTPUT EXPECTED
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<results>
<status>OK</status>
<usage>Please use it</usage>
<url/>
<language>english</language>
<category>science_technology</category>
<score>0.838661</score>
</results>
How can I do this?
Shortest as possible:
or using identity rule: