String strFCKeditor1 = request.getParameter(“FCKeditor1”);
答案 0 :(得分:6)
String strFCKeditor1 = request.getParameter("FCKeditor1").replaceAll("\\r|\\n", "");
您还需要替换\r
和/或\n\r
(因此正则表达式),而不仅仅是\n
,如其他答案中所述,因为您不知道用户正在使用Windows / Mac OSX / Linux。
答案 1 :(得分:1)
strFCKeditor1.replaceAll("\n","");//this will replace all \n with blank string
答案 2 :(得分:-2)
根据您的问题,我假设您要从字符串末尾删除换行符。
使用 -
StringUtils.chomp(str);
http://commons.apache.org/lang/apidocs/src-html/org/apache/commons/lang3/StringUtils.html#line.4353