remove
Remove all occurrences of a substring from a string.
string(required): the source stringsearch(required): substring to remove
utlx
remove("Hello World", " ") // "HelloWorld"
remove("$1,234.56", ",") // "$1234.56"