stringArray function

Syntax

string[] stringArray()

string[] stringArray(values)

Parameters

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

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.