Text

Case to DotCase

Free and instant online tool to convert normal text, strings, or variables into DotCase.

Input Text
dot-case Result
100% Secure
Fast Conversion
High Accuracy

Free Online DotCase Converter

Our string formatting tool instantly transforms your normal text, sentences, or code variables into DotCase. Simply paste your content, and the tool will automatically handle spaces and capitalization.

How to convert

1. Paste Case text

Paste or type your Case content into the input area.

2. Conversion Process

Our tool automatically converts your text to DotCase format with the best possible settings.

3. Copy DotCase

The conversion is complete. You can now copy the result directly to your clipboard.

Frequently Asked Questions

Conversion Specs

InputCase
OutputDotCase
SafetyHTTPS / Auto-delete
Price
Free

Using code

dotCase

Converts a given string into dot.case format by splitting the input on camelCase boundaries, non-alphanumeric characters, and whitespace, then joining the resulting lowercase words with dots.

Parameters

NameTypeDescription
textstringThe text to convert.

Returns

stringThe dot cased string.
npm i @razomy/string-case
import {dotCase} from '@razomy/string-case';

dotCase('Hello World');
// => hello.world

dotCase('camelCaseString');
// => camel.case.string

dotCase('foo_bar');
// => foo.bar