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