Examples
InputHello World Example
Outputhello.world.example
Inputcom example project
Outputcom.example.project
What is dot.case?
dot.case replaces spaces with periods (full stops) and converts all letters to lowercase. It is commonly seen in Java package names, file extensions, and certain configuration formats.
When to use dot.case
Use dot.case for Java package names (com.example.project), for object property access paths, for configuration key naming in some frameworks, and for any context where dots are the standard separator.
Other Converters
UPPERCASEConvert your text to UPPERCASE letters instantly.
lowercaseConvert your text to lowercase letters instantly.
Title CaseConvert your text to Title Case, capitalising the first letter of each major word.
Sentence caseConvert your text to Sentence case, capitalising only the first letter of each sentence.
camelCaseConvert your text to camelCase for use in programming.
PascalCaseConvert your text to PascalCase for class names and components.