Text.At
Syntax
Text.At(text as nullable text, index as number) as nullable text
About
Returns the character in the text value, text
at position index
. The first character in the text is at position 0.
Example 1
Find the character at position 4 in string "Hello, World".
Usage
Text.At("Hello, World", 4)
Output
"o"