Returns a string where all alphabetic characters have been converted to uppercase or lowercase
Supported Platforms: Windows and Mac OS
(strcase string [which])
Type: String
The text string to convert.
Type: T or nil
If specified as T, all alphabetic characters in string are converted to lowercase. Otherwise, characters are converted to uppercase.
Type: String
Converted text value.
(strcase "Sample") "SAMPLE" (strcase "Sample" T) "sample"
The strcase function will correctly handle case mapping of the currently configured character set.