string = "Yellow"
puts string[1..string.length] -> outputs "ellow"
有没有更短的方法让 Ruby 在不使用 string.length 的情况下做同样的事情?例如,在 Python 中,我们可以编写 string[1:] 并且它会执行此操作。
提前致谢。
string = "Yellow"
puts string[1..string.length] -> outputs "ellow"
有没有更短的方法让 Ruby 在不使用 string.length 的情况下做同样的事情?例如,在 Python 中,我们可以编写 string[1:] 并且它会执行此操作。
提前致谢。