Text.Middle
Returns the substring up to a specific length.
Syntax
Text.Middle(
text as text,
start as number,
optional count as number
) as text
Remarks
Returns count
characters, or through the end of text
; at the offset start
.
Examples
Example #1
Find the substring from the text "Hello World" starting at index 6 spanning 5 characters.
Text.Middle("Hello World", 6, 5)
Result:
"World"
Example #2
Find the substring from the text "Hello World" starting at index 6 through the end.
Text.Middle("Hello World", 6, 20)
Result:
"World"
Category
Text.Extraction