ProperCase capitalizes the first letter of each word in the string and converts all other letters to lower case. It also capitalizes any letter that follows a non-alpha character
ProperCase( String )
string | A string capitalize. |
---|
A string.
ProperCase("HELLO WORLD") // Returns the string "Hello World" ProperCase("this is only a test.what is the result?") // Returns the string "This Is Only A Test.What Is The Result?"