Sentence Case String To Snake Case String

What is Sentence Case?

Sentence case is a naming convention in which a word or phrase is written without spaces between words and each word is capitalized.

What is Snake Case?

Snake case is a naming convention in which a word or phrase is written without spaces between words and each word is separated by an underscore.

How to convert Sentence Case String to Snake Case String?

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

Example

Let's convert the string "Hello World" to Snake Case String.

First, we need to split the string into words.

StringWords
Hello WorldHello, World

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

WordsSnake Case Words
Hello, Worldhello_world

Finally, we need to join the words together. In this case, the final Snake Case String is hello_world. This is the Snake 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!