This is really a extension of what we talked about in StringCheckForChar. SRFI-13 provides string-filter and string-delete functions, which are inverse operations:
The first thing to note is that the SRFI-13 implementation that ships with PLT, as well as the one provided by Schematics, differ from the spec in that they swap the order of the 1st two arguments. This can be a little confusing.
Second, both functions allow you to specify the filter argument in 3 ways: as a character, a char-set, or a predicate. For example, the following 3 are equivalent methods of stripping a hyphen from a string: