We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
string-upcase converts a string to uppercase.
Example 1: Convert a string to uppercase - to show the difference to string-upcase!
> (define mystr "This is a test.") > mystr "This is a test." > (string-upcase mystr) "THIS IS A TEST." > mystr "This is a test."