> (define s "alphaBETA gammaDELTA") > (string-upcase s) ;; turn all into upper case "ALPHABETA GAMMADELTA" > (string-downcase s) ;; turn all into lower case "alphabeta gammadelta" > (string-titlecase s) ;; capitalise start of each word "Alphabeta Gammadelta"