语法
- string listRange(stringList, leftIndex, rightIndex)
参数
- stringList - 字符串
- leftIndex - 浮点型
- rightIndex - 浮点型
回波
返回从 leftIndex 到 rightIndex 的项目(不包括 rightIndex)。
说明
listRange 函数用于返回 stringList 中从 leftIndex 到 rightIndex 的所有项目(结果列表中不包括 rightIndex 项目)。
注:
- 索引从 0 开始。
- Stringlist 是存储在一个字符串内的一系列字符串。 各个元素以分号 (";") 分隔。 每个项目的后面必须有分号,最后一个项目也是如此! 数据类型为“字符串”,因此与在其他脚本语言中不同,它不是数组。
相关内容
示例
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"