- s-capitalize sprocedure
Convert the first word's first character to upper case and the rest to lower case in s.
(s-capitalize "abc DEF") ;; => "Abc def" (s-capitalize "abc.DEF") ;; => "Abc.def"
Convert the first word's first character to upper case and the rest to lower case in s.
(s-capitalize "abc DEF") ;; => "Abc def" (s-capitalize "abc.DEF") ;; => "Abc.def"