Casing Reference
Available Casings
| Casing | Result | Example Input: "userProfile" |
|---|
| camel | userProfile | userProfile |
| pascal | UserProfile | UserProfile |
| snake | user_profile | user_profile |
| kebab | user-profile | user-profile |
| dot | user.profile | user.profile |
| slash | user/profile | user/profile |
| path | user/profile | user/profile |
| constant | USER_PROFILE | USER_PROFILE |
| lower | userprofile | userprofile |
| upper | USERPROFILE | USERPROFILE |
| title | User Profile | User Profile |
| train | User-Profile | User-Profile |
| Casing | Result | Example Input: "orderManagementService" |
|---|
| camel | orderManagementService | orderManagementService |
| pascal | OrderManagementService | OrderManagementService |
| snake | order_management_service | order_management_service |
| kebab | order-management-service | order-management-service |
| constant | ORDER_MANAGEMENT_SERVICE | ORDER_MANAGEMENT_SERVICE |
| title | Order Management Service | Order Management Service |
Special Cases
| Casing | Result | Example Input: "API_KEY" |
|---|
| camel | apiKey | apiKey |
| pascal | ApiKey | ApiKey |
| snake | api_key | api_key |
| kebab | api-key | api-key |
| title | Api Key | Api Key |