getStringList()

This function returns the values stored in a text list variable, which was previously created using the setStringList() function.


Bash
getStringList(variableName) #Output: Text list


Examples

Expression parser

Description

Bash
getStringList("myStringList")

This example returns the value stored in "myStringList", e.g.:

["Hello","World"]

Additional information

Parameters used in this function

Parameter

Input (data type)

Description

variableName

text

The name of the stored variable.

Output

This function returns a text list

To return the value you must have created the variable before, using the setStringList() function within the same expression.


📚 Use cases and examples