listRange
Syntax
string listRange(stringList, leftIndex, rightIndex)
Parameters
- stringList (string)
- leftIndex (float)
- rightIndex (float)
Returns
Returns items from leftIndex to rightIndex (rightIndex excluded).
Description
This function returns all items in the stringList from leftIndex to rightIndex (the rightIndex item is not included in the resulting list).
Note.1: Indices are 0 - based.
Note.2: 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
- listAdd function
- listClean function
- listCount function
- listFirst function
- listIndex function
- listItem function
- listLast function
- listRandom function
- listRemove function
- listRemoveAll function
- listRetainAll function
- listSize function
- listTerminate function
Examples
listRange("rule;your;city;with;cityengine;",0,3) # result = "rule;your;city;" listRange("texture_1;texture_2;texture_3;texture_4;texture_5;texture_6;",2,3) # result = "texture_3"
Copyright ©2008-2024 Esri R&D Center Zurich. All rights reserved.