Text.At
Returns the character at the specified position.
function (optionaltext
as nullable any,index
as number) as nullable any
Returns the character in the text value,
text
at position index
. The first character in the text is at position 0.Text.Extraction
Find the character at position 4 in string "Hello, World".
Text.At("Hello, World", 4)
"o"
Last modified 4yr ago