I need a C# RegEx pattern which can remove anything between < and >
E.g if my string is
<Html> some stuff here 123445!@#$% </HTML>
then the RegEx should return me only
some stuff here 123445!@#$%
It should remove anything between < and > and then also remove "<" & ">"