Text.Replace
テキスト内で出現する指定されたサブストリングをすべて置き換えます。
Syntax
Text.Replace(
text as text,
old as text,
new as text
) as text
Remarks
テキスト値 text
に出現するすべてのテキスト値 old
をテキスト値 new
に置き換えた結果を返します。この関数では大文字と小文字が区別されます。
Examples
Example #1
文章内に出現するすべての "the" を "a" に置き換えます。
Text.Replace("the quick brown fox jumps over the lazy dog", "the", "a")
Result:
"a quick brown fox jumps over a lazy dog"
Category
Text.Modification