ReplaceHtmlBreakAndStrongToSlashN static method

String ReplaceHtmlBreakAndStrongToSlashN(
  1. String Sentences
)

Implementation

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