Text.Remove
Removes all occurrences of the given character or list of characters from the input text value.
function (optionaltext
as nullable any, optionalremoveChars
as nullable any) as nullable any
Returns a copy of the text value
text
with all the characters from removeChars
removed.Text.Modification
Remove characters , and ; from the text value.
Text.Remove("a,b;c",{",",";"})
"abc"
Last modified 4yr ago