stringArray function
string[] stringArray()
string[] stringArray(values)
values float[]bool[]string[] Values to convert.
Returns an empty string array if values is not given. Otherwise, returns the values converted element-wise to string.
Related
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]