getString()

This function returns the value stored in a text variable, which was previously created using the setIssueList() function.


Bash
getString(variableName) #Output: Text


Examples

Expression parser

Description

Bash
getString("myString")

This example returns the value stored in "myString", 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

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


📚 Use cases and examples