Snake Case String To Kebab Case String

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.

What is Kebab Case?

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

How to convert Snake Case String to Kebab Case String?

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

Example

Let's convert the string "hello_world" to Kebab Case String.

First, we need to split the string into words.

StringWords
hello_worldhello, world

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

WordsKebab Case Words
hello, worldhello, world

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