unescape_text function
Implementation
unescape_text(String s) {
HtmlUnescape htmlUnescape = HtmlUnescape();
var text = htmlUnescape.convert(s.replaceAll("<br>", "\r\n"));
return text;
}
unescape_text(String s) {
HtmlUnescape htmlUnescape = HtmlUnescape();
var text = htmlUnescape.convert(s.replaceAll("<br>", "\r\n"));
return text;
}