语法
- string listLast(stringList)
参数
- stringList - 字符串
返回
返回 stringList 中的最后一个项目。
说明
listLast 函数用于返回 stringList 中的最后一个项目。
注:
Stringlist 是存储在一个字符串内的一系列字符串。 各个元素以分号 (";") 分隔。 每个项目的后面必须有分号,最后一个项目也是如此! 数据类型为“字符串”,因此与在其他脚本语言中不同,它不是数组。
相关内容
示例
listLast("rule;your;city;")
# result = "city"
listLast(fileSearch("myProject/assets/image*.jpg"))
# result = the image from that directory with the highest index