Text.End
Returns the last characters of the text.
function (optionaltext
as nullable any,count
as number) as nullable any
Returns a
text
value that is the last count
characters of the text
value text
.Text.Extraction
Get the last 5 characters of the text "Hello, World".
Text.End("Hello, World", 5)
"World"
Last modified 4yr ago