Title Case to lowercase Converter
Convert Title Case text to lowercase — one line or a whole list at once.
To convert Title Case to lowercase, paste your text above and the result updates as you type. User Account Id becomes user account id. Word boundaries are detected from the existing casing, so an identifier does not need separators to be split correctly. Lowercasing is how you normalise text before comparing it — though for user-facing comparisons, locale matters: Turkish dotted and dotless i famously break naive lowercasing.
Runs in your browserAbout converting TITLECASE to LOWERCASE
Title Case is for prose headings rather than code — it is what you convert an identifier into when it becomes a label in a user interface. Lowercasing is how you normalise text before comparing it — though for user-facing comparisons, locale matters: Turkish dotted and dotless i famously break naive lowercasing. Converting Title Case to lowercase turns User Account Id into user account id; acronyms are the awkward case in every direction, since "userID" and "userId" split differently and only one of them round-trips.