Returns an input string with the first letter of each word in uppercase and the subsequent letters in lowercase.
ProperCase("hello world") → "Hello World" ProperCase("New YoRK CIty") → "New York City"
ProperCase(string)
string - A text value
string
Last updated 2 years ago