Convert Text to dot.case
A free online dot.case converter. Paste any string and it converts to dot.case instantly, replacing spaces with dots and lowercasing every word. Useful for config files, object property paths, and feature flag names.
How to Use the dot.case Converter
Type or paste your text into the box above. The dot.case output appears instantly. Click the copy button to send the result to your clipboard.
Examples: user profile settings becomes user.profile.settings. API request handler becomes api.request.handler. convert-to-dot-case becomes convert.to.dot.case.
What Is dot.case?
dot.case is a naming convention where compound terms are joined with dots and every letter is lowercase. It is common in i18n keys (auth.login.error), feature flag names (checkout.use_new_flow), nested config paths, and Java package names.
When to Use dot.case
Use dot.case for translation keys, feature flag identifiers, nested configuration paths, and any context where the dots represent hierarchy or namespacing. For programming variable names use snake_case or camelCase instead.
Other Text Converters
For other text transformations: title case converter, sentence case, lowercase, UPPERCASE, camelCase, snake_case, dot.case, hyphenated (kebab-case), and invert case.