ReplaceHtmlBreakAndStrongToSlashN static method
Implementation
static String ReplaceHtmlBreakAndStrongToSlashN(String Sentences) {
String val = "";
val = Sentences.replaceAll("<br />", "\n");
val = val.replaceAll("</strong>", "\n");
val = val.replaceAll("<strong>", "");
return val;
}