listLast function

Syntax

  • string listLast(stringList)

Parameters

  1. stringList—string

Returns

Returns last item in stringList.

Description

The listLast function returns the last item in the stringList.

Note:

Stringlists 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

listLast("rule;your;city;")
# result = "city"

listLast(fileSearch("myProject/assets/image*.jpg"))
# result = the image from that directory with the highest index

In this topic