Text.Start
Returns the start of the text.
Syntax
Text.Start(
text as text,
count as number
) as text
Remarks
Returns the first count
characters of text
as a text value.
Examples
Example #1
Get the first 5 characters of "Hello, World".
Text.Start("Hello, World", 5)
Result:
"Hello"
Category
Text.Extraction