listTerminate function

Syntax

  • string listTerminate(stringList)

Parameters

  1. stringList—string

Returns

Stringlist with seperator ";" at the end. Use this to fix string lists with a missing semicolon at the end. If the stringlist is already terminated, nothing happens.

Description

The listTerminate function returns stringList with separator ";" at the end.

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


In this topic