Constant Case String To Path Case String

What is Constant Case?

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

What is Path Case?

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

How to convert Constant Case String to Path Case String?

To convert Constant Case String to Path Case String, we need to split the string into words, then convert each word to lowercase, then join the words together with a slash.

Example

Let's convert the string "HELLO_WORLD" to Path Case String.

First, we need to split the string into words.

StringWords
HELLO_WORLDHELLO, WORLD

Now, we need to convert each word to lowercase.

WordsLowercase Words
HELLO, WORLDhello, world

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