Blog
Text tools

Dot to comma replacer online

Turns US-style decimal numbers like "3.14" into European-style "3,14". Turn on "digits only" to convert just the decimal points and leave sentence-ending periods and abbreviations alone.

Your data never leaves this device

Result

Periods replaced

This page has no server side at all. The table you paste is parsed by JavaScript inside your own browser, the chart is drawn on a canvas element on your machine, and the export file is assembled locally. Nothing is uploaded, stored or written to any log. You can disconnect from the network after the page has loaded and everything will still work — which is the simplest way to verify the claim yourself.

Facts and limits of this method

Default mode Replaces every period, including sentence-ending ones
"Digits only" mode Converts a period only when it sits directly between two digits
Typical use Preparing US-formatted decimal numbers (3.14) for European-locale software (3,14)
Version numbers In digits-only mode, "1.2.3" becomes "1,2,3" — treated the same as a decimal number
Non-numeric periods (URLs, files) Untouched in digits-only mode, since letters aren't digits
Counter Reflects the number of replacements actually made under the selected mode

When it misleads you

How it is calculated

In the default mode, the tool matches every literal period in the text and replaces it with a comma, counting every occurrence.

In digits-only mode, it looks specifically for a digit, followed by a period, followed by another digit, and replaces only the period in that pattern — counting only these matches.

Everything else in the text — letters, other punctuation, spaces — is left exactly as it was.

The counter shown always reflects how many replacements were actually made under whichever mode is selected.

Questions and answers

What's the point of "digits only" mode?

It lets you convert decimal numbers to the European comma format without touching sentence-ending periods or abbreviations elsewhere in the text.

Will it break version numbers like 1.2.3?

Yes, if digits-only mode is on — each period between two digits matches the same pattern as a decimal point, so "1.2.3" becomes "1,2,3".

How is this different from the comma-to-dot converter?

That tool does the opposite conversion — it turns commas into periods, for going from European decimal formatting back to a dot.

Does it touch periods in domain names or filenames?

Not in digits-only mode, since the character after the period usually isn't a digit. In the default mode (digits-only off), every period is replaced regardless of context.

Is my text sent anywhere?

No. Everything runs in your browser; the text is never transmitted.

Related tools

All tools