Text.Remove

语法

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

简介

返回文本值 text 的副本,其中包含从 removeChars 中删除的所有字符。

示例 1

删除文本值中的字符“,”和“;”。

使用情况

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

输出

"abc"