instance method
from
Ruby on Rails 7.1.6
Since v3.0.20Signature
from(position)
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.
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:
str = "hello" str.from(0).to(-1) # => "hello" str.from(1).to(-2) # => "ell"
Parameters
-
positionreq
Source
# File activesupport/lib/active_support/core_ext/string/access.rb, line 46
def from(position)
self[position, length]
end
Defined in activesupport/lib/active_support/core_ext/string/access.rb line 46
· View on GitHub
· Improve this page
· Find usages on GitHub
Defined in String