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