Jump to content

Template:Isnumeric/doc: Difference between revisions

From Simple English Wikipedia, the free encyclopedia
Content deleted Content added
Created page with "{{Documentation subpage}} <!-- PLEASE ADD CATEGORIES AND INTERWIKIS AT THE BOTTOM OF THIS PAGE --> This template tests whether a value is numeric (or at least, that it can be ..."
 
Kumioko (talk | changes)
m →‎Related pages: Fix typos, formatting, brackets and links, replaced: == See also == → ==Related pages== using AWB (8759)
Line 19: Line 19:
</table>
</table>


=== See also ===
===Related pages===
* {{tl|ifnumber}}
* {{tl|ifnumber}}
* {{tl|px}}
* {{tl|px}}

Revision as of 19:26, 15 December 2012

This template tests whether a value is numeric (or at least, that it can be treated as such by the expression ParserFunction).

Usage

By default, simply writing {{Isnumeric|1,327}} (where 1,327 is an example number) will pass through the parameter if it's numeric and be blank if it's not. If the parameter boolean=true is given, as in {{Isnumeric|1,327|boolean=true}}, then the template will output 1 if numeric and 0 if not numeric.

Examples

coderesult
{{Isnumeric|1,327.50}}

1,327.50

{{Isnumeric|9,999 (1950)}}
{{Isnumeric|9999999999999}}

9999999999999

{{Isnumeric|500 metres}}
{{Isnumeric|500*500}}

500*500

{{Isnumeric|9.999e50}}

9.999e50

{{Isnumeric|1+1}}

1+1

{{Isnumeric}}