次の方法で共有


Text.Remove

構文

Text.Remove(text as nullable text, removeChars as any) as nullable text

バージョン情報

removeChars からすべての文字を削除したうえで、テキスト値 text のコピーを返します。

例 1

テキスト値から文字 , と ; を削除します。

使用方法

Text.Remove("a,b;c", {",",";"})

出力

"abc"