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