Hi I have an html based text (with html tags), I want to find words that occur within angle brackets and replace the brackets with < and > or even when angle brackets are used as math symobls
e.g:
String text= "Hello, <b> Whatever <br /> <table> <tr> <td width="300px">
1 < 2 This is a <test> </td> </tr> </table>";
I want this to be :
Hello, <b> Whatever <br /> <table> <tr> <td width="300px">
1 < 2 This is a < test > </td> </tr> </table>
THANKS in advance