Returns the last characters of the text.
function (optional
text
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"