TextText.Remove本頁導覽Text.Remove 從輸入文字值中移除所有出現的指定字元或字元清單。 Syntax Text.Remove( text as text, removeChars as any) as text Remarks 傳回文字值 text 的複本,並移除 removeChars 的所有字 元。 Examples Example #1 從文字值中移除 , 和 ; 字元。 Text.Remove("a,b;c", {",",";"}) Result: "abc" Category Text.Modification