Name
deletechars — Removes all characters from a string
Synopsis
string
deletechars
( |
string
| STRING, |
| |
string
| REMOVE); |
Parameters
-
string
STRING
-
string
REMOVE
Characters to be removed from STRING
Description
Returns a string that results from string STRING by removing all characters that occur in string REMOVE.
Usage
deletechars ("a", "abcdefghijklmnopqrstuvwxyz") -> ""
deletechars ("abc","cde") -> "ab"