Variable Match
Variable Match
Tests if a variable matches the given value.
Supports both String Operations and Math Operations to compare the variable against the input.
Variable
The name of the variable to compare against.
Use the plain name such as MyVariable
or movie.Title
.
Dot notation is supported for nested properties (e.g. movie.Year
).
Value
The value to compare the variable against.
The syntax you use determines whether it's treated as a string or math operation:
- Math examples:
>123
– greater than 123<100
– less than 100=456
or just456
– equal to 456
- String examples:
abc
– exact match*abc*
– containsabc
abc*
– starts withabc
*abc
– ends withabc
For full details, see the String Operations and Math Operations documentation.
Outputs
- Input matched variable – The variable matched the given value.
- Input did not match variable – The variable did not match the value.
Example
To check if the variable movie.Year
is greater than 2000:
- Variable:
movie.Year
- Value:
>2000
This will output to Input matched variable if the year is greater than 2000.