TidyText

snake_case converter

Convert words, phrases, or variable names to snake_case, line by line, without sending anything to a server.

0 words · 0 chars · 0 lines

Convert
Remove
Lines
More

Questions

What is snake_case?

Words joined by underscores, all lowercase: user_name, api_key. It is the convention for Python variables and database columns.

Can it convert camelCase to snake_case?

Yes — case boundaries count as word breaks, so "userEmailAddress" becomes "user_email_address". Each line converts separately.