Text Case Format Samples

Examples of different text case formats: camelCase, snake_case, kebab-case, PascalCase, and more

📝 camelCase to Other Formats

🟢 simple

Convert camelCase variable names to snake_case, kebab-case, and PascalCase

⏱️ 1 min 🏷️ camelcase, conversion
userName
firstName
isActive
getUserById
totalPrice

📝 snake_case to Other Formats

🟢 simple

Convert snake_case to camelCase, kebab-case, and PascalCase

⏱️ 1 min 🏷️ snake, conversion
user_name
first_name
is_active
get_user_by_id
total_price

📝 kebab-case to Other Formats

🟢 simple

Convert kebab-case to camelCase, snake_case, and PascalCase

⏱️ 1 min 🏷️ kebab, conversion
user-name
first-name
is-active
get-user-by-id
total-price

📝 PascalCase to Other Formats

🟢 simple

Convert PascalCase class names to camelCase, snake_case, and kebab-case

⏱️ 1 min 🏷️ pascal, conversion
UserName
FirstName
IsActive
GetUserById
TotalPrice

📝 Space Separated to Code Formats

🟢 simple

Convert space-separated text to camelCase, snake_case, or kebab-case for code

⏱️ 1 min 🏷️ space, conversion
user name
first name
is active
get user by id
total price

📝 Mixed Format Auto-Detection

🟡 intermediate ⭐⭐

Test auto-detection with mixed camelCase, snake_case, and kebab-case

⏱️ 2 min 🏷️ mixed, auto-detect
userName
user_name
user-name
getUserId
get_user_id
get-user-id

📝 Edge Cases with Numbers

🟡 intermediate ⭐⭐

Handle numbers at start, middle, and end of identifiers

⏱️ 2 min 🏷️ numbers, edge-case
user123
user123Name
123user
apiV2
version2Update

📝 Consecutive Capitals (Acronyms)

🟡 intermediate ⭐⭐⭐

Handle abbreviations like XML, HTTP, API, JWT, OAuth

⏱️ 2 min 🏷️ acronyms, capitals
XMLParser
HTTPResponse
APIKey
JWTToken
OAuthProvider
userID
parseXML
getJSON

📝 Real-World Variable Names

🟡 intermediate ⭐⭐

Common variable naming patterns from production code

⏱️ 2 min 🏷️ real-world, variables
userId
firstName
lastName
emailAddress
phoneNumber
createdAt
updatedAt
isActive
isLoggedIn

📝 API Endpoint Names

🟡 intermediate ⭐⭐

REST API endpoint naming patterns

⏱️ 2 min 🏷️ api, endpoints
getUserById
createUser
updateUserProfile
deleteUserAccount
listAllUsers
searchUserByEmail
validateAuthToken

📝 CSS Class Names

🟡 intermediate ⭐⭐

CSS class naming conventions (BEM, utility, etc)

⏱️ 2 min 🏷️ css, classes
backgroundColor
textColor
fontSize
borderWidth
marginLeft
paddingTop
zIndex

📝 File Naming Conventions

🟡 intermediate ⭐⭐

File naming across different frameworks and languages

⏱️ 2 min 🏷️ files, naming
UserProfile.vue
user_service.ts
UserRepository.java
user-profile.component.ts
user_model.py
user_controller.rb

📝 Database Column Names

🟡 intermediate ⭐⭐

Common database column naming patterns

⏱️ 2 min 🏷️ database, columns
user_id
first_name
last_name
email_address
created_at
updated_at
is_active
is_deleted

📝 Special Characters Handling

🔴 complex ⭐⭐⭐

Handle dots, multiple separators, and special characters

⏱️ 3 min 🏷️ special, characters
user.name
user__name
user..name
user-name-id
user_name_id
user.name.id

📝 Technical Acronyms

🔴 complex ⭐⭐⭐

Common technical terms and abbreviations in code

⏱️ 3 min 🏷️ technical, acronyms
XMLHttpRequest
JSONData
HTMLElement
SQLQuery
UUIDGenerator
MD5Hash
SHA256Hash
Base64Encoder

📝 Complex Mixed Format

🔴 complex ⭐⭐⭐⭐

Real-world scenario with mixed naming conventions

⏱️ 3 min 🏷️ complex, mixed
getUserID
parse_XML_file
http-response-code
OAuth2Token
base64_encoded_data
SHA-256-Hash
XMLParser2
user_profile_image_url