Convert Identifiers Between camelCase and snake_case
Converts identifier names between the five common conventions and flags collisions.
Loading the tool…
How to use this tool
- Paste the names one per line.
- Choose the convention to convert to.
- Select Convert.
- Check the Note column for collisions before using the result as column or key names.
What identifier case converter does
Crossing a boundary usually means crossing a naming convention: snake_case columns arriving as camelCase fields, kebab-case config keys becoming CONSTANT_CASE environment variables. Paste the names one per line and get the whole list converted, which is faster and less error-prone than editing them by hand.
Runs of capitals are handled properly, so HTTPServerConfig becomes http_server_config rather than h_t_t_p_server_config — that single rule is what most quick conversions get wrong. Collisions are flagged: two different names that convert to the same result is a real problem when the output is a set of column names or object keys, and it is invisible until something overwrites something else.