String Ruby

s = 'My kingdom for a string!'
s.slice(-7,3)                      # => "str"
s[-7,6]                            # => "string"