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