WoW:API tonumber: Difference between revisions

56 bytes removed ,  10 February 2007
m
Remove singatures made using ~ in main namespace
(Change category from "LUA Functions" to "Lua functions".)
m (Remove singatures made using ~ in main namespace)
Line 1: Line 1:
<center>'''tonumber()''' ''-Documentation by [[user:Two|Two]], updated by [[User:Drundia|Drundia]] 21:59, 25 April 2006 (EDT)-''</center>
<center>'''tonumber()''' ''-Documentation by [[user:Two|Two]], updated by-''</center>
----
----


Line 5: Line 5:


;''Arguments''
;''Arguments''
:<b>tonumber(arg {,base})</b>
:'''tonumber(arg {,base})'''
::<b>arg</b> - this value will be converted to a numeric value.
::'''arg''' - this value will be converted to a numeric value.
::<b>base</b> - An optional argument specifies the base to interpret the numeral. The base may be any integer between 2 and 36, inclusive. In bases above 10, the letter `A´ (in either upper or lower case) represents 10, `B´ represents 11, and so forth, with `Z´ representing 35. In base 10 (the default), the number may have a decimal part, as well as an optional exponent part. In other bases, only unsigned integers are accepted.
::'''base''' - An optional argument specifies the base to interpret the numeral. The base may be any integer between 2 and 36, inclusive. In bases above 10, the letter `A´ (in either upper or lower case) represents 10, `B´ represents 11, and so forth, with `Z´ representing 35. In base 10 (the default), the number may have a decimal part, as well as an optional exponent part. In other bases, only unsigned integers are accepted.


----
----
;''Returns''
;''Returns''


:: The argument as a numeric value or <b>nil</b> if the value cannot be converted.
:: The argument as a numeric value or '''nil''' if the value cannot be converted.


----
----
Anonymous user