string downcase - part-cw/lambdanative GitHub Wiki
(string-downcase str)
string-downcase converts a string to lowercase.
Parameter | Description |
---|---|
str | Input string |
Example
Example 1: Convert a string to lowercase - to show the difference to string-downcase!
> (define mystr "This is a TEST.")
> mystr
"This is a test."
> (string-downcase mystr)
"this is a test."
> mystr
"This is a TEST."