RemoveChars
Qubes 6.7 Deletes a set of characters from a string.
Syntax
RemoveChars(chars, string)
chars = string listing the characters to remove
string = string from which you want to delete the characters
Remarks
All of the characters in string that are also present in chars will be removed.
Examples
RemoveChars("lo", "hello") = "he"