You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 10 Next »

This function creates a variable for storing a text value, and directly setsvalue.

This value will be returned by the getString() function, when used within the same expression.

Syntax
setString(variableName, value) #Output: No output
Examples
Expression parserDescription
setString("myString","Hello World!")
This example creates the variable "myString" and sets the value "Hello World!".
Additional information

Parameters used in this function

ParameterInput (data type)Description
variableName

TEXT

A text for the variable name.
value

TEXT

The text value to be stored.
Output

This function returns "does not return a value."

To retrieve the value stored in the variable, use the function getString() within the same expression.