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