String To Title Case

What is Title Case?

Title case is a naming convention in which a word or phrase is written without spaces between words and each word is capitalized except for the first word.

How to convert String to Title Case?

To convert String to Title Case, we need to split the string into words, then convert each word to title case, then join the words together.

Example

Let's convert the string "hello world" to Title Case.

First, we need to split the string into words.

StringWords
hello worldhello, world

Now, we need to convert each word to title case.

WordsTitle Case Words
hello, worldHello, World

Finally, we need to join the words together. In this case, the final Title Case String is Hello World. This is the Title Case String representation of the string "hello world".

Heart with ribbonBecome a SponsorHeart with ribbon

Become a sponsor and help us maintain and improve this project. Every contribution counts. Thank you!