Anonymous
×
Create a new article
Write your page title here:
We currently have 205 articles on Shadowrun Seattle Shutdown. Type your article name above or click on one of the titles below and start writing!



Shadowrun Seattle Shutdown

Template:IsNum/Documentation: Difference between revisions

(Created page with "{{Template|IsNum}} template tests whether a value is numeric (or at least, that it can be treated as such by the expression ParserFunction). ==Usage== It has one {{Parameter|mandatory|string}} and one {{Parameter|optional|named}}: By default, simply writing {{Code|<nowiki>{{IsNum|1,327}}</nowiki>}} (where 1,327 is an example number) will pass through the parameter if it's numeric and return blank if it's not. If the parameter {{Code|boolean=true}} is given, as in {{Cod...")
 
No edit summary
Line 16: Line 16:
{{TableMid|{{Code|<nowiki>{{IsNum|9.999e50}}</nowiki>}}|&nbsp;{{IsNum|9.999e50}}}}
{{TableMid|{{Code|<nowiki>{{IsNum|9.999e50}}</nowiki>}}|&nbsp;{{IsNum|9.999e50}}}}
{{TableMid|{{Code|<nowiki>{{IsNum|1+1|boolean=true}}</nowiki>}}|&nbsp;{{IsNum|1+1|boolean=true}}}}
{{TableMid|{{Code|<nowiki>{{IsNum|1+1|boolean=true}}</nowiki>}}|&nbsp;{{IsNum|1+1|boolean=true}}}}
{{TableMid|{{Code|<nowiki>{{IsNum|2b&or;&not;2b|boolean=true}}</nowiki>}}|&nbsp;{{IsNum|2b&or;&not;2b|boolean=true}}}}
{{TableEnd}}
{{TableEnd}}

Revision as of 16:05, 24 October 2022

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

Usage

It has one mandatory string parameter and one optional named parameter:

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

Return

CodeReturn
{{IsNum|1,327.50}} 1,327.50
{{IsNum|9,999 (1950)}} 
{{IsNum|9999999999999}} 9999999999999
{{IsNum|500 metres}} 
{{IsNum|500*500}} 500*500
{{IsNum|9.999e50}} 9.999e50
{{IsNum|1+1|boolean=true}} 1+1
{{IsNum|2b∨¬2b|boolean=true}}