REMOVE – Remove characters from a string
This function deletes the specified characters from a string and returns the modified input string.
.
REMOVE(<string>,<characters>)Where:
<string>- The string to be modified.
<characters>- The character or characters to be deleted.
For example, the command REMOVE(“24/01/2022”,”/”) returns
"240122". The command REMOVE(“Hello, is it me you’re looking
for?”,”,?’” returns "Hello is it me youre looking
for".