在 Ruby 中修剪字符串而不创建新字符串

Stewart Nguyen 2022年5月18日
在 Ruby 中修剪字符串而不创建新字符串

在 Ruby 中,我们可以使用 String#strip 方法来删除空格。它会给你一个被修剪过的新字符串。

另一方面,使用 bang 版本 strip! 将有助于避免创建新字符串。

在 Ruby 中使用 strip! 修剪字符串的方法

strip! 将从对象中删除空格。如果不进行任何更改,它将返回 nil

'  hello world '.strip!

输出:

'hello world'

请避免分配 string = string.strip! 因为当未对字符串进行任何更改时,这可能会导致意外结果。

string = 'hello world'
string = string.strip!
puts string

输出:

nil

相关文章 - Ruby String