Return a new string where the letters in
strare replaced by their upper-case equivalents.
Return a new string where the letters in
strare replaced by their lower-case equivalents.
Function: string-capitalize str
Return a new string where the letters in
strthat start a new word are replaced by their title-case equivalents, while non-initial letters are replaced by their lower-case equivalents.
Destructively modify
str, replacing the letters by their upper-case equivalents.