ToNumber
ToNumber( value )
ToNumber( value )
ToNumber( value )
ToNumber( value )
to_number( value )
ToNumber( value )
Description
The ToNumber
function converts a value to a numeric literal, if
possible.
Attempting to convert a value to a number which has no numeric representation results in an "invalid argument" error.
Returns
A Number created by interpreting value
.
Examples
The following query executes an array of independent ToNumber
operations and returns the results in an array. The result array
position matches the execution array position. The first operation
converts a floating point literal to a number. The second operation
takes an integer literal and converts it to a number. The last operation
converts a string to a number.
Arr(DoubleV(1234.5678), LongV(1234), LongV(123))
[1234.5678 1234 123]
[1234.5678, 1234, 123]
[ 1234.5678, 1234, 123 ]
[1234.5678, 1234, 123]
[ 1234.5678, 1234, 123 ]
Is this article helpful?
Tell Fauna how the article can be improved:
Visit Fauna's forums
or email docs@fauna.com
Thank you for your feedback!