String-Case
-----------
`(require 'string-case)'
- Procedure: string-upcase str
- Procedure: string-downcase str
- Procedure: string-capitalize str
The obvious string conversion routines. These are non-destructive.
- Function: string-upcase! str
- Function: string-downcase! str
- Function: string-captialize! str
The destructive versions of the functions above.
- Function: string-ci->symbol str
Converts string STR to a symbol having the same case as if the
symbol had been `read'.
- Function: symbol-append obj1 ...
Converts OBJ1 ... to strings, appends them, and converts to a
symbol which is returned. Strings and numbers are converted to
read's symbol case; the case of symbol characters is not changed.
#f is converted to the empty string (symbol).