ReplaceSlashNAndHtmlBreak static method

String ReplaceSlashNAndHtmlBreak(
  1. String Sentences
)

Implementation

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