Name
deletechars — Delete charachters from a string (FIXME)
Synopsis
string
deletechars
( |
string
| STRING
, |
|
string
| REMOVE
) ; |
Parameters
-
string
STRING
-
string
REMOVE
Charachters to be removed
Description
Returns a string that results from string STRING by removing all characters that occur in REMOVE.
Usage
deletechars ("a", "abcdefghijklmnopqrstuvwxyz") -> ""
|