RIGHT takes string (or list) and a number and returns the number of characters from the string from the end.
RIGHT
RIGHT('blablub', 4)
This will return 'blub'.
'blub'
RIGHT([1, 2, 3, 4, 5], 2)
This will return [4, 5].
[4, 5]
Last updated 1 year ago
Was this helpful?