Converts a value to Text, preserving the original scalar or array structure. To concatenate the array into one string, see tostring.
touniformstring( value, … )
value: (Any Type) Value to convert.
Text
Arrays are preserved.
When operating on arrays, it is not necessary to use apply
with touniformstring
. If multiple parameters are passed, or one parameter is an Array, then an Array of Text is returned.
touniformstring("John Doe 1060 West Addison Chicago","IL")
returns {"John Doe 1060 West Addison Chicago", "IL"}
tostring(): Use this function to concatenate to a scalar Text.