Napomena
Za pristup ovoj stranici potrebna je autorizacija. Možete se pokušati prijaviti ili promijeniti direktorije.
Za pristup ovoj stranici potrebna je autorizacija. Možete pokušati promijeniti direktorije.
Syntax
Text.End(text as nullable text, count as number) as nullable text
About
Returns a text value that is the last count characters of the text value text.
Example
Get the last 5 characters of the text "Hello, World".
Usage
Text.End("Hello, World", 5)
Output
"World"