listRange function

string listRange(stringList, leftIndex, rightIndex)

stringList string

leftIndex float

rightIndex float

Returns the items from leftIndex to rightIndex (rightIndex excluded).

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

Examples

Example

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"