method
rindex
rails latest stable - Class:
ActiveSupport::Multibyte::Chars
rindex(needle, offset=nil)public
Returns the position needle in the string, counting in codepoints, searching backward from offset or the end of the string. Returns nil if needle isn’t found.
Example:
'Café périferôl'.mb_chars.rindex('é') # => 6 'Café périferôl'.mb_chars.rindex(/\w/u) # => 13