如何删除 Ruby 字符串开头和结尾的 newLines
我需要删除 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您可以使用 String#strip 方法。
You can use String#strip method.
这应该可以做到:
This should do it:
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
NPatel 的答案是:
The platform independent version of NPatel's answer is:
如果您的目的是仅删除空格,那么 strip 方法应该可以工作...但是如果您尝试专门针对新行,则可以尝试以下操作:
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:
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.