2011-02-23 44 views

回答

6
String strFCKeditor1 = request.getParameter("FCKeditor1").replaceAll("\\r|\\n", ""); 

您還需要更換\r和/或\n\r(因此正則表達式),而不僅僅是\n在對方回答說,因爲你不知道你的用戶是否使用Windows/Mac OSX/Linux。

+0

感謝Snake現在的工作... – Learner 2011-02-23 12:16:51

+0

不應該是'request.getParameter(「FCKeditor1」)。toString()。replaceAll(「\\ r | \\ n」,「」); '? – 2011-02-23 12:24:50

+0

@Jigar Joshi No:可以在這裏閱讀:http://download.oracle.com/javaee/6/api/javax/servlet/ServletRequest.html#getParameter(java.lang.String) getParameter返回一個字符串,不是對象 – Snake 2011-02-23 15:18:47

1
strFCKeditor1.replaceAll("\n","");//this will replace all \n with blank string 
+0

謝謝它的工作:) – Learner 2011-02-23 12:02:38

+0

你總是歡迎:) – 2011-02-23 12:04:00

+1

我剛剛完成我的CMS只是因爲你的幫助。感謝你讓我的工作變得如此簡單。再次感謝:-) – Learner 2011-02-23 12:15:58

相關問題