stringValue()

Synopsis

Returns a string containing a textual representation of value.

Syntax

stringValue ( value As Any ) As String 
Argument Type Description
value Any The value to be represented as a string ; permitted to be NoValue .

Example 1

Intent >stringValue(sin(30.0)) 
-->"0.500"

Example 2

Intent >stringValue(self())
--> "Block<04CB2CF0>" 

Example 3

Intent >stringValue({{"a", "b", "c", "d"}, {"e", "f", "g", "h"}}) 
--> "List of 2"