/**
* 替换TextArea内容可显示格式.
*
* @param textAreaContent TextArea内容
* @return String
*/
public static String replaceTextAreaToHtml(String textAreaContent) {
return textAreaContent.replaceAll("\\r\\n", "<br/>").replaceAll("\\n", "<br/>").replaceAll("\\s", " ");
}
/**
* 替换TextArea内容可显示格式,英文空格转为中文空格.
*
* @param textAreaContent TextArea内容
* @return String
*/
public static String replaceTextAreaToHtmlForChineseBlank(String textAreaContent) {
return textAreaContent.replaceAll("\\r\\n", "<br/>").replaceAll("\\n", "<br/>").replaceAll("\\s", " ");
}