listAdd
Syntax
string listAdd(stringList, item)
Parameters
- stringList (string)
- item (string)
Returns
Appended item to stringList.
Description
This function appends the item to the stringList.
Note: String lists are a series of strings stored inside one string. The elements are separated by a semicolon (";"). Each item must be followed by a semicolon, also the last one! The data type is "string", thus it is not an array as used in other scripting languages.
Related
- listClean function
- listCount function
- listFirst function
- listIndex function
- listItem function
- listLast function
- listRandom function
- listRange function
- listRemove function
- listRemoveAll function
- listRetainAll function
- listSize function
- listTerminate function
Examples
listAdd("rule;your;","city") # result = "rule;your;city;" listAdd("rule;your;","city;") # result = "rule;your;city;"
Copyright ©2008-2024 Esri R&D Center Zurich. All rights reserved.