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
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