Template:Int
From LIMSWiki
0
[edit] [ ] Template documentation
Usage
This template is used to determine if an argument is a number or not. If it is a number, then ‘1’ or, if provided, the second parameter is returned. Otherwise, ‘0’ or the third parameter is returned.
Parameter | Description | Type | Status | |
---|---|---|---|---|
test value | 1 | the argument to be tested | String | required |
true return value | 2 | what to display if the first argument is a number
| String | optional |
false return value | 3 | what to display if the first argument is not a number
| String | optional |
Examples
code | result |
---|---|
{{Int|a}} |
0 |
{{Int|1}} |
1 |
{{Int|1.0}} |
1 |
{{Int|1.1}} |
1 |
{{Int|1|a number|not a number}} |
a number |
{{Int|1.0|a number|not a number}} |
a number |
{{Int|1.1|a number|not a number}} |
a number |
{{Int|1/2|a number|not a number}} |
a number |
{{Int|1/1|a number|not a number}} |
a number |
{{Int|1e3|a number|not a number}} |
a number |
{{Int|1e-3|a number|not a number}} |
a number |
{{Int|0.1e3|a number|not a number}} |
a number |
See also
- {{isnumeric}}
The above documentation is transcluded from Template:Int/doc. (edit | history) Editors can experiment in this template's sandbox (create) and testcases (create) pages. Please add categories and interwikis to the /doc subpage. Subpages of this template. |