ReplaceHtmlBreakToSlashN static method

String ReplaceHtmlBreakToSlashN(
  1. String Sentences
)

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