Hi Vinayaka,
You can create a Java mapping after this mapping and simply replace the characters like below:
str = str.replaceAll("<","<");
str = str.replaceAll(">",">");
this should work.
Ambrish
Hi Vinayaka,
You can create a Java mapping after this mapping and simply replace the characters like below:
str = str.replaceAll("<","<");
str = str.replaceAll(">",">");
this should work.
Ambrish