by Robert Hashemian
JavaScript Thousand Separator, Decimal Number Formatter
What is the JavaScript Thousand Separator, Decimal Number Formatter?
A simple JavaScript function for numerical formatting. It formats decimal numbers by
inserting separator characters at the thousands positions. For example, 1234512345.12345 becomes
1,234,512,345.12345. You can also specify other separator and decimal point characters to suit your culture.
Feel free to download and modify the JavaScript function for your own needs, such as adapting it
for your development. If your platform already supports numerical formatting, you should
use that instead, as those are generally more robust.
For American and British systems, you can skip the second and third parameters. For other cultures,
you should specify the separator and decimal point characters to guide the function. The function
works fine for whole numbers too.
Here's the simple JavaScript Decimal number formatter (copy and paste in your Web page):
<script language="JavaScript" src="https://rhashemian.github.io/js/NumberFormat.js"></script>
<script language="JavaScript">
document.write(FormatNumberBy3("1234512345.12345"));
</script>
The number is formatted as:
Here is the version for most of Europe:
<script language="JavaScript" src="https://rhashemian.github.io/js/NumberFormat.js"></script>
<script language="JavaScript">
document.write(FormatNumberBy3("1234512345,12345", ",", "."));
</script>
The number is formatted as: