Condition - Expression
The condition Expression checks whether the expression is true or not.
Example Expressions:a==1
b > =3
c < b AND a > 3
(a--)==0
startsWith(a, "test")
a > addDays(b, 4)
isEmpty(files)
Examples:
- Check if the accuracy of a location is good enough:
location_accuracy<300
- Check if a counter reached zero:
counter==0
Settings
Expression
The expression to evaluate.
Note: Variables can be used directly in an expression and don't need to be escaped using curly braces.
Example: use
Note: Variables can be used directly in an expression and don't need to be escaped using curly braces.
Example: use
location_accuracy
instead of {location_accuracy}
.