ToString
ToStringExpr( value )
ToString( value )
ToString( value )
ToString( value )
to_string( value )
ToString( value )
Description
The ToString
function converts a value to a string, if possible.
Attempting to convert a value to a string which has no string representation results in an "invalid argument" error.
Returns
A String representing value
.
Examples
The following query executes an array of independent ToString
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 string. The second operation
takes an integer literal and converts it to a string. The third
operation converts a date to a string.
Arr(StringV(1234.5678), StringV(true), StringV(2018-06-06), StringV(null), StringV(2015-02-20T06:30:00Z))
[1234.5678 true 2018-06-06 null null 2015-02-20T06:30:00Z]
["1234.5678", "true", "2018-06-06", "null", "2015-02-20T06:30:00Z"]
[
'1234.5678',
'true',
'2020-07-06',
'null',
'2020-07-06T12:34:56.789Z'
]
['1234.5678', 'true', '2018-06-06', 'null', '2015-02-20T06:30:00Z']
[
'1234.5678',
'true',
'2020-07-06',
'null',
'2020-07-06T12:34:56.789Z'
]
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!