0 characters •
0 words •
0 lines
Case Conversion Examples
Sentence case
First letter of first word capitalized
This is an example text.
Title Case
First letter of each important word capitalized
This Is an Example Text
camelCase
Used in programming, no spaces
thisIsAnExampleText
snake_case
Words separated by underscores
this_is_an_example_text
About Text Case Conversion:
- • UPPERCASE: Converts all letters to capital letters
- • lowercase: Converts all letters to small letters
- • Title Case: Capitalizes the first letter of each major word
- • Sentence case: Capitalizes only the first letter of sentences
- • camelCase: Used in programming for variable names
- • snake_case: Popular in Python and database naming
- • kebab-case: Common in URLs and CSS class names
- • PascalCase: Used for class names in programming