🎯 Recommended Samples
Balanced sample collections from various categories for you to explore
Text Case Format Samples
Examples of different text case formats: camelCase, snake_case, kebab-case, PascalCase, and more
📝 camelCase to Other Formats
Convert camelCase variable names to snake_case, kebab-case, and PascalCase
userName
firstName
isActive
getUserById
totalPrice
📝 snake_case to Other Formats
Convert snake_case to camelCase, kebab-case, and PascalCase
user_name
first_name
is_active
get_user_by_id
total_price
📝 kebab-case to Other Formats
Convert kebab-case to camelCase, snake_case, and PascalCase
user-name
first-name
is-active
get-user-by-id
total-price
📝 PascalCase to Other Formats
Convert PascalCase class names to camelCase, snake_case, and kebab-case
UserName
FirstName
IsActive
GetUserById
TotalPrice
📝 Space Separated to Code Formats
Convert space-separated text to camelCase, snake_case, or kebab-case for code
user name
first name
is active
get user by id
total price
📝 Mixed Format Auto-Detection
Test auto-detection with mixed camelCase, snake_case, and kebab-case
userName
user_name
user-name
getUserId
get_user_id
get-user-id
📝 Edge Cases with Numbers
Handle numbers at start, middle, and end of identifiers
user123
user123Name
123user
apiV2
version2Update
📝 Consecutive Capitals (Acronyms)
Handle abbreviations like XML, HTTP, API, JWT, OAuth
XMLParser
HTTPResponse
APIKey
JWTToken
OAuthProvider
userID
parseXML
getJSON
📝 Real-World Variable Names
Common variable naming patterns from production code
userId
firstName
lastName
emailAddress
phoneNumber
createdAt
updatedAt
isActive
isLoggedIn
📝 API Endpoint Names
REST API endpoint naming patterns
getUserById
createUser
updateUserProfile
deleteUserAccount
listAllUsers
searchUserByEmail
validateAuthToken
📝 CSS Class Names
CSS class naming conventions (BEM, utility, etc)
backgroundColor
textColor
fontSize
borderWidth
marginLeft
paddingTop
zIndex
📝 File Naming Conventions
File naming across different frameworks and languages
UserProfile.vue
user_service.ts
UserRepository.java
user-profile.component.ts
user_model.py
user_controller.rb
📝 Database Column Names
Common database column naming patterns
user_id
first_name
last_name
email_address
created_at
updated_at
is_active
is_deleted
📝 Special Characters Handling
Handle dots, multiple separators, and special characters
user.name
user__name
user..name
user-name-id
user_name_id
user.name.id
📝 Technical Acronyms
Common technical terms and abbreviations in code
XMLHttpRequest
JSONData
HTMLElement
SQLQuery
UUIDGenerator
MD5Hash
SHA256Hash
Base64Encoder
📝 Complex Mixed Format
Real-world scenario with mixed naming conventions
getUserID
parse_XML_file
http-response-code
OAuth2Token
base64_encoded_data
SHA-256-Hash
XMLParser2
user_profile_image_url