Difference between revisions of "Template:Number"
		
		
		
		
		
		
		Jump to navigation
		Jump to search
		
				
		
		
		
		
		
		
		
		
	
 (Update templatedata)  | 
				 (Add example usage)  | 
				||
| Line 33: | Line 33: | ||
}  | }  | ||
</templatedata>  | </templatedata>  | ||
| + | == Examples ==  | ||
| + | {| class="wikitable"  | ||
| + | !Input!!Output  | ||
| + | |-  | ||
| + | |<code><nowiki>{{Number|120000}}</nowiki></code>||{{Number|120000}}  | ||
| + | |-  | ||
| + | |<code><nowiki>{{Number|18000000000}}</nowiki></code>||{{Number|18000000000}}  | ||
| + | |-  | ||
| + | |<code><nowiki>{{Number|12456712473}}</nowiki></code>||{{Number|12456712473}}  | ||
| + | |-  | ||
| + | |<code><nowiki>{{Number|7.4e87}}</nowiki></code>||{{Number|7.4e87}}  | ||
| + | |-  | ||
| + | |<code><nowiki>{{Number|5E+34|format=named}}</nowiki></code>||{{Number|5E+34|format=named}}  | ||
| + | |-  | ||
| + | |<code><nowiki>{{Number|3.50e+09|format=scientific}}</nowiki></code>||{{Number|3.50e+09|format=scientific}}  | ||
| + | |-  | ||
| + | |<code><nowiki>{{Number|3555|prefix=$}}</nowiki></code>||{{Number|3555|prefix=$}}  | ||
| + | |-  | ||
| + | |<code><nowiki>{{Number|1.8e12|suffix=%}}</nowiki></code>||{{Number|1.8e12|suffix=%}}  | ||
| + | |-  | ||
| + | |<code><nowiki>{{Number|2e308}}</nowiki></code>||{{Number|2e308}}  | ||
| + | |}  | ||
</noinclude>  | </noinclude>  | ||
Revision as of 20:04, 19 March 2021
Display a large number in named and/or scientific notations, matching in-game formatting
| Parameter | Description | Type | Status | |
|---|---|---|---|---|
| Number | 1 | The number to display (in long form or scientific notation) 
  | Number | required | 
| Format | format | Force a specific format (named or scientific). If blank, displays both named and scientific (preferred) 
  | String | optional | 
| Prefix | prefix | Add an optional prefix to the number 
  | String | optional | 
| Suffix | suffix | Add an optional suffix to the number 
  | String | optional | 
Examples
| Input | Output | 
|---|---|
{{Number|120000}} | 
120,000 | 
{{Number|18000000000}} | 
18 B (1.8e10) | 
{{Number|12456712473}} | 
12.457 B (1.246e10) | 
{{Number|7.4e87}} | 
7.4 OcV (7.4e87) | 
{{Number|5E+34|format=named}} | 
50 De | 
{{Number|3.50e+09|format=scientific}} | 
3.5e9 | 
{{Number|3555|prefix=$}} | 
$3,555 | 
{{Number|1.8e12|suffix=%}} | 
1.8 T% (1.8e12%) | 
{{Number|2e308}} | 
Infinity |