/* Metoda przygotowuje wypowiedź z bazy do wypisania jej na stronie do edycji * @param text string który zostanie zmodyfikowany * @return Zmodyfikowany String */ public static String wypowiedzDoTekst(String text) { text = text.replaceAll("<br/>", "\r\n"); text = text.replaceAll("'", "'"); text = text.replaceAll("<", "<"); text = text.replaceAll(">", ">"); text = text.replaceAll("&", "&"); text = text.replaceAll(""", "\""); text = Commons.zabierzEmotikonki(text); return text; }
/* Metoda przygotowuje wpisaną wypowiedź użytkownika do wprowadzenia do bazy * @param text string który zostanie zmodyfikowany * @return Zmodyfikowany String */ public static String wypowiedzDoBazy(String text) { text = text.replaceAll("&", "&"); text = text.replaceAll("<", "<"); text = text.replaceAll(">", ">"); text = text.replaceAll("\"", """); text = text.replaceAll("'", "'"); // \\\\'"); text = text.replaceAll("\r\n", "<br/>"); text = text.replaceAll("\n", "<br/>"); text = Commons.dodajEmotikonki(text); return text; }