Install via yarn add locutus and import:
import { number_format } from 'locutus/php/strings/number_format'.
Or with CommonJS: const { number_format } = require('locutus/php/strings/number_format')
Use a bundler that supports tree-shaking so you only ship the functions you actually use.
Vite,
webpack,
Rollup, and
Parcel
all handle this. For server-side use this is less of a concern.
Examples
These examples are extracted from test cases that automatically verify our functions against their native counterparts.
#
code
expected result
1
number_format(1234.56)
'1,235'
2
number_format(1234.56, 2, ',', ' ')
'1 234,56'
3
number_format(1234.5678, 2, '.', '')
'1234.57'
4
number_format(67, 2, ',', '.')
'67,00'
5
number_format(1000)
'1,000'
6
number_format(67.311, 2)
'67.31'
7
number_format(1000.55, 1)
'1,000.6'
8
number_format(67000, 5, ',', '.')
'67.000,00000'
9
number_format(0.9, 0)
'1'
10
number_format('1.20', 2)
'1.20'
11
number_format('1.20', 4)
'1.2000'
12
number_format('1.2000', 3)
'1.200'
13
number_format('1 000,50', 2, '.', ' ')
'100 050.00'
14
number_format(1e-8, 8, '.', '')
'0.00000001'
Here's what our current TypeScript equivalent to PHP's number_format looks like.
exportfunctionnumber_format( number: string | number, decimals: number | undefined, decPoint: string | undefined, thousandsSep: string | undefined, ): string { // discuss at: https://locutus.io/php/number_format/ // original by: Jonas Raoni Soares Silva (https://www.jsfromhell.com) // improved by: Kevin van Zonneveld (https://kvz.io) // improved by: davook // improved by: Brett Zamir (https://brett-zamir.me) // improved by: Brett Zamir (https://brett-zamir.me) // improved by: Theriault (https://github.com/Theriault) // improved by: Kevin van Zonneveld (https://kvz.io) // bugfixed by: Michael White (https://getsprink.com) // bugfixed by: Benjamin Lupton // bugfixed by: Allan Jensen (https://www.winternet.no) // bugfixed by: Howard Yeend // bugfixed by: Diogo Resende // bugfixed by: Rival // bugfixed by: Brett Zamir (https://brett-zamir.me) // revised by: Jonas Raoni Soares Silva (https://www.jsfromhell.com) // revised by: Luke Smith (https://lucassmith.name) // input by: Kheang Hok Chin (https://www.distantia.ca/) // input by: Jay Klehr // input by: Amir Habibi (https://www.residence-mixte.com/) // input by: Amirouche // example 1: number_format(1234.56) // returns 1: '1,235' // example 2: number_format(1234.56, 2, ',', ' ') // returns 2: '1 234,56' // example 3: number_format(1234.5678, 2, '.', '') // returns 3: '1234.57' // example 4: number_format(67, 2, ',', '.') // returns 4: '67,00' // example 5: number_format(1000) // returns 5: '1,000' // example 6: number_format(67.311, 2) // returns 6: '67.31' // example 7: number_format(1000.55, 1) // returns 7: '1,000.6' // example 8: number_format(67000, 5, ',', '.') // returns 8: '67.000,00000' // example 9: number_format(0.9, 0) // returns 9: '1' // example 10: number_format('1.20', 2) // returns 10: '1.20' // example 11: number_format('1.20', 4) // returns 11: '1.2000' // example 12: number_format('1.2000', 3) // returns 12: '1.200' // example 13: number_format('1 000,50', 2, '.', ' ') // returns 13: '100 050.00' // example 14: number_format(1e-8, 8, '.', '') // returns 14: '0.00000001'
Locutus is a community effort following
The McDonald's Theory:
we ship first iterations, hoping others will improve them.
If you see something that could be better, we'd love your contribution.