developers.do

String Case Converter

Convert text between camelCase, PascalCase, snake_case, kebab-case, CONSTANT_CASE, and more

camelCasee.g. myVariableName
helloWorld!ThisIsAMixedFormatString
PascalCasee.g. MyVariableName
HelloWorld!ThisIsAMixedFormatString
snake_casee.g. my_variable_name
hello_world!_this_is_a_mixed_format_string
kebab-casee.g. my-variable-name
hello-world!-this-is-a-mixed-format-string
CONSTANT_CASEe.g. MY_VARIABLE_NAME
HELLO_WORLD!_THIS_IS_A_MIXED_FORMAT_STRING
dot.casee.g. my.variable.name
hello.world!.this.is.a.mixed.format.string
path/casee.g. my/variable/name
hello/world!/this/is/a/mixed/format/string
lower casee.g. my variable name
hello world! this is a mixed format string
UPPER CASEe.g. MY VARIABLE NAME
HELLO WORLD! THIS IS A MIXED FORMAT STRING
Title Casee.g. My Variable Name
Hello World! This Is A Mixed Format String
Sentence casee.g. My variable name
Hello world! this is a mixed format string

11 case formats. Inputs are tokenized using camel boundaries, separators (_ - . /), and letter↔number transitions so any mixed source string produces clean output.