Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
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"