This repository has been archived by the owner on Oct 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
53 lines (37 loc) · 1.36 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Number Formatter lets you format numbers with custom amount of decimals, custom decimal and thousands separators.
=====================================================
Basic Usage
=====================================================
To format a number, use the following code:
{exp:number_formatter}1000000{/exp:number_formatter}
Returns 1 000 000
Defaults:
Number of decimals is 0.
Decimal point separator is comma.
Thousands separator is space.
Overriding the defaults:
{exp:number_formatter decimals="2" decimal_point="," thousands_separator="."}1000000{/exp:number_formatter}
Returns 1.000.000,00
You can prefix and suffix text if you'd like:
{exp:number_formatter decimals="2" decimal_point="," thousands_separator="." prefix="$" suffix=" (USD)"}1000000{/exp:number_formatter}
Returns $1.000.000,00 (USD)
=====================================================
Parameters
=====================================================
decimals
Number of decimals in number.
decimal_point
Character to use as decimal point.
thousands_sep
Character to use as thousands separator.
prefix
Text to prefix the number formatting.
suffix
Text to suffix the number formatting.
=====================================================
Changelog
=====================================================
23/11/2011 - 0.2
Added parameters for prefix and suffix.
23/11/2011 - 0.1
Initial (basic) version.