i have a xml file to which i need to
<?xml version='1.0' encoding='UTF-8'?><ns0:TradeMessage xmlns:ns0="http://aptp.accenture.com/BuySell">
<SecuritiesTrade>
<Direction>BUY</Direction>
<Other Tags>
</other Tags>
</SecuritiesTrade>
</ns0:TradeMessage>
Now what i want is to use a regular expression and remove only this tag:
what regular expression should i use so that the output is :
<?xml version='1.0' encoding='UTF-8'?>
<SecuritiesTrade>
<Direction>BUY</Direction>
<Other Tags>
</other Tags>
</SecuritiesTrade>