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