replaceHtmlBreakToSlashN static method

String replaceHtmlBreakToSlashN(
  1. String Sentences
)

Implementation

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