Text.Remove
Removes all occurrences of the given character or list of characters from the input text value.
Syntax
Text.Remove(
text as text,
removeChars as any
) as text
Remarks
Returns a copy of the text value text
with all the characters from removeChars
removed.
Examples
Example #1
Remove characters , and ; from the text value.
Text.Remove("a,b;c", {",",";"})
Result:
"abc"
Category
Text.Modification