Convert Rich Text of description in plain text

Hi Tom,

When working in Java, you can try the apache commons library as follows :

String txt= StringEscapeUtils.unescapeHtml4(s); 
       txt= txt.replaceAll("<p>","");   
       txt= txt.replaceAll("</p>", "");  

Regards