如何修剪“输入键”在一个字符串中

发布于 2024-10-18 23:35:04 字数 65 浏览 1 评论 0原文

String strFCKeditor1 = request.getParameter("FCKeditor1");

String strFCKeditor1 = request.getParameter("FCKeditor1");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

魔法唧唧 2024-10-25 23:35:04
String strFCKeditor1 = request.getParameter("FCKeditor1").replaceAll("\\r|\\n", "");

您还需要替换 \r 和/或 \n\r (因此是正则表达式),而不仅仅是 \n 如中所述其他答案,因为您不知道您的用户是否使用 Windows / Mac OSX / Linux。

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

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.

有木有妳兜一样 2024-10-25 23:35:04
strFCKeditor1.replaceAll("\n","");//this will replace all \n with blank string
strFCKeditor1.replaceAll("\n","");//this will replace all \n with blank string
网白 2024-10-25 23:35:04

从你的问题来看,我假设你想从字符串末尾删除换行符。

使用 -

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文