number: Difference between revisions

From RPTools Wiki
Jump to navigation Jump to search
No edit summary
m (Slight cleanup)
Line 4: Line 4:
|version=1.3b48
|version=1.3b48
|description=
|description=
Returns the value that is passed in as a number. If the value can not be converted to a number then an error will occur. If you are unsure if a value is a number to can use [[Macros:Functions:isNumber|isNumber()]] before calling this function.
Returns the value that is passed in as a number. If the value can not be converted to a number then an error will occur. If you are unsure if a value is a number, use {{func|isNumber}} before calling this function.
      
      
|usage=
|usage=
Line 10: Line 10:
number(val)
number(val)
</syntaxhighlight>
</syntaxhighlight>
|also=
{{func|string}}
}}
}}
[[Category:Mathematical Function]]
[[Category:Mathematical Function]]
[[Category:String Function]]
[[Category:String Function]]

Revision as of 01:47, 21 November 2023

 This article is a stub, you can help the RPTools Wiki project by contributing content to expand this article.

number() Function

Introduced in version 1.3b48
Returns the value that is passed in as a number. If the value can not be converted to a number then an error will occur. If you are unsure if a value is a number, use isNumber() before calling this function.

Usage

number(val)


See Also