Skip to content
Chris Petersen edited this page Oct 16, 2014 · 1 revision

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."
Clone this wiki locally