from

from(position)
Instance Public methods

Returns a substring from the given position to the end of the string. If the position is negative, it is counted from the end of the string.

1
2
3
4
str = "hello"
str.from(0# => "hello"
str.from(3# => "lo"
str.from(-2) # => "lo"

You can mix it with to method and do fun things like:

1
2
3
str = "hello"
str.from(0).to(-1) # => "hello"
str.from(1).to(-2) # => "ell"
doc_ruby_on_rails
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.