Text.Insert

構文

Text.Insert(text as nullable text, offset as number, newText as text) as nullable text

バージョン情報

位置 offset のテキスト値 text にテキスト値 newText を挿入した結果を返します。 位置は 0 から始まります。

例 1

"ABD" の "B" と "D" の間に "C" を挿入します。

使用方法

Text.Insert("ABD", 2, "C")

出力

"ABCD"