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