如何修剪“输入键”在一个字符串中
String strFCKeditor1 = request.getParameter("FCKeditor1");
String strFCKeditor1 = request.getParameter("FCKeditor1");
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
String strFCKeditor1 = request.getParameter("FCKeditor1");
String strFCKeditor1 = request.getParameter("FCKeditor1");
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
您还需要替换
\r
和/或\n\r
(因此是正则表达式),而不仅仅是\n
如中所述其他答案,因为您不知道您的用户是否使用 Windows / Mac OSX / Linux。You also need to replace the
\r
and/or\n\r
(hence the regex), not just\n
as stated in the other answer, since you don't know whether your user is using Windows / Mac OSX / Linux.从你的问题来看,我假设你想从字符串末尾删除换行符。
使用 -
StringUtils.chomp(str);
http://commons.apache.org/lang/apidocs/src-html/org/apache/commons/lang3/StringUtils.html#line.4353
From your question i assume you want to remove the newline characters from the end of your string.
Use -
StringUtils.chomp(str);
http://commons.apache.org/lang/apidocs/src-html/org/apache/commons/lang3/StringUtils.html#line.4353