如何删除 Ruby 字符串开头和结尾的 newLines

发布于 2024-12-01 04:55:28 字数 94 浏览 2 评论 0原文

我需要删除 ruby​​ 中字符串开头和结尾的换行符(某种修剪)。

但只是在开头和结尾......位于字符串中间的新行必须保持不变。

谢谢你!

I need to remove newlines at the beginning and at the end of a string in ruby (some sort of trimming).

But JUST at the beginning and the end... The new lines located in the middle of the string must remain untouched.

Thank you!

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

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

发布评论

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

评论(5

权谋诡计 2024-12-08 04:55:28

您可以使用 String#strip 方法。

"\tgoodbye\r\n".strip   #=> "goodbye"

You can use String#strip method.

"\tgoodbye\r\n".strip   #=> "goodbye"
凡间太子 2024-12-08 04:55:28

这应该可以做到:

string.lstrip!.rstrip!

This should do it:

string.lstrip!.rstrip!
梦开始←不甜 2024-12-08 04:55:28

String.strip 将从前面和后面删除所有多余的空白,只留下内部。

http://ruby-doc.org/core/classes/String.html#M001189

String.strip will remove all extra whitespace from the front and back, leaving innards alone.

http://ruby-doc.org/core/classes/String.html#M001189

凉薄对峙 2024-12-08 04:55:28

NPatel 的答案是:

"\nabc\ndef\n".gsub(/^#{$/}/, "").gsub(/#{$/}$/, "")

The platform independent version of NPatel's answer is:

"\nabc\ndef\n".gsub(/^#{$/}/, "").gsub(/#{$/}$/, "")
动听の歌 2024-12-08 04:55:28

如果您的目的是仅删除空格,那么 strip 方法应该可以工作...但是如果您尝试专门针对新行,则可以尝试以下操作:

"\r\na b c d\r\ne f g\r\n".gsub(/^\r\n/, "").gsub(/\r\n$/, "")
=> "a b c d\r\ne f g"

gsub 方法将使用正则表达式来定位开始 ^ 和结束 $ 位置,以替换为“”。

注意:这里我假设你的换行符是 \r\n。这可能不独立于平台。

If your intent is to strip just whitespace then the strip method should work...but if your trying to target new lines specifically then maybe try this:

"\r\na b c d\r\ne f g\r\n".gsub(/^\r\n/, "").gsub(/\r\n$/, "")
=> "a b c d\r\ne f g"

the gsub method will use regular expression to target the beginning ^ and end $ locations for replacement with "".

NOTE: Here I made the assumption that your newline is \r\n. This may not be platform independent.

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