stringArray function
Syntax
string[] stringArray()
string[] stringArray(values)
Parameters
- values (float[], bool[], string[])
Values to convert.
Returns
If values is not given, an empty string array is returned.
If values is given, a string array is returned that contains the elements of values converted to the corresponding string values.
Related
- float function
- bool function
- str function
- floatArray function
- boolArray function
- array initialization function
Examples
stringArray([1, 0, 1.777, 20]) # result = [1,0,1.777,20] stringArray(["true", "CityEngine", ""]) # result = [true,CityEngine,] stringArray([true, false, true]) # result = [true,false,true]
Copyright ©2008-2024 Esri R&D Center Zurich. All rights reserved.