This tool converts text to CamelCase. It provides flexible options so you can convert the entire text into lowerCamelCase, convert it into UpperCamelCase (PascalCase), convert only specified words to CamelCase (leaving other words as they are), or convert all words except those you explicitly allow. Simply enter your text, choose the conversion mode that suits your needs, and process your text.
Examples:
Convert Entire Text to lowerCamelCase
Converts all words and joins them, with the first word in lowercase.
Before:
hello world this is a test
After:
helloWorldThisIsATest
Convert Entire Text to UpperCamelCase
Converts all words to start with an uppercase letter and joins them.
Before:
hello world this is a test
After:
HelloWorldThisIsATest
Convert Only Specified Words to CamelCase
Only the specified words are converted to CamelCase while others remain unchanged.
Before:
hello world this is a test
After (converting "world" and "test"):
hello World this is a Test
Convert All Except Allowed Words to CamelCase
Converts every word to CamelCase except those you allow.
Before:
hello world this is a test
After (allowing "hello" and "test"):
Hello world This Is a test