tostring
The tostring
function converts the input to a value of type string
.
Syntax
tostring( Expression )
Arguments
- Expression: Expression to convert to a string.
Returns
If the Expression value is non-null, returns a string representation of Expression.
Example
tostring(123)
returns"123"
tostring("hello")
returns"hello"
tostring(null)
returnsnull