TextText.Removeこのページの見出しText.Remove 入力テキスト値から、指定された文字または一連の文字をすべて削除します。 Syntax Text.Remove( text as text, removeChars as any) as text Remarks removeChars からすべての文字を削除したうえで、テキスト値 text のコピーを返します。 Examples Example #1 テキスト値から文字 , と ; を削除します。 Text.Remove("a,b;c", {",",";"}) Result: "abc" Category Text.Modification