Inserts one text value into another at a given position.
function (optional
text
as nullable any,offset
as number,newText
as text) as nullable any
Returns the result of inserting text value newText
into the text value text
at position offset
. Positions start at number 0.
Text.Modification
Insert "C" between "B" and "D" in "ABD".
Text.Insert("ABD", 2, "C")
"ABCD"