Text.Insert
Inserts one text value into another at a given position.
function (optionaltext
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"
Last modified 4yr ago