Returns a string where all alphabetic characters have been converted to uppercase or lowercase
(strcase string [which])
Arguments
A string.
T, all alphabetic characters in string are converted to lowercase. Otherwise, characters are converted to uppercase.
If specified asReturn Values
A string.
Examples
Command: (strcase "Sample")
"SAMPLE"
Command: (strcase "Sample" T)
"sample"
strcase function will correctly handle case mapping of the currently configured character set.
The