Crate case_switcher
Source - capitalize
- Return a version of the string with the first letter capitalized.
- get_words
- Get all of the words in a string.
- to_camel
- Return a version of the string in
camelCase
format. - to_dot
- Return a version of the string in
dot.case
format. - to_kebab
- Return a version of the string in
kebab-case
format. - to_pascal
- Return a version of the string in
PascalCase
format. - to_path
- Return a version of the string in
path/case
format. - to_snake
- Return a version of the string in
snake_case
format. - to_title
- Return a version of the string in
Title Case
format.