Difference between revisions of "Tonumber"

From OpenEUO
Jump to: navigation, search
 
Line 3: Line 3:
  
 
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 can have a decimal part, as well as an optional exponent part (see §2.1). In other bases, only unsigned integers are accepted.
 
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 can have a decimal part, as well as an optional exponent part (see §2.1). In other bases, only unsigned integers are accepted.
 +
 +
[[String.format]]
  
 
[[Tostring]]
 
[[Tostring]]
  
 
[http://www.lua.org/manual/5.1/manual.html#2.1 Lua Manual - Lexical Conventions]
 
[http://www.lua.org/manual/5.1/manual.html#2.1 Lua Manual - Lexical Conventions]

Latest revision as of 11:19, 9 October 2010

tonumber (e [, base])

Tries to convert its argument to a number. If the argument is already a number or a string convertible to a number, then tonumber returns this number; otherwise, it returns nil.

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 can have a decimal part, as well as an optional exponent part (see §2.1). In other bases, only unsigned integers are accepted.

String.format

Tostring

Lua Manual - Lexical Conventions