ProperCase
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"
Inputs
ProperCase(string)
string
- A text value
Last updated
Was this helpful?