str StrCapitalize(str s)
Returns s with the first character uppercase and the rest lowercase.
To capitalize each word, use StrCapitalizeWords.
StrCapitalize("hello world") -> "Hello" StrCapitalize("HELLO WORLD") -> "Hello world"