Operators

An operator is a symbol that applies to certain data (such as numbers or strings) and tells the system what it should do with it. Once the system executes the operator on the data (i.e, once the operator "operates"), you always get some result or value. Common operators include + (addition, as in 1 + 1), - (subtraction, such as 2-1), etc.

A single expression may contain many operators, such as 1 + 2 * 3. The operators are evaluated in a certain sequence -- not as they're written in the line (from left to write). For example, 1 + 2 * 3 evaluates to 7 and not to 9, because the multiplication operator has higher precedence than the addition operator.

Operator Precedence

The following table also shows operator precedence - the topmost operators are the first to be evaluated when the system evaluates an expression.

Description

Syntax

Example

Argument Types

Result Type

Parenthesis

()

(1 + 2) * 3

Any

Any

Bitwise NOT operator

~

~{a}

Numeric

Numeric

Logical NOT operator

!

!{x} > 0

Boolean

Boolean

Multiplicative operators

*   /   %

{d} * 3

Numeric

Numeric

Additive operators

+   -

{b} + {c}

Numeric (or Strings for "+")

Numeric (or String for "+")

Bit shift and unsigned bit shift operators

>> << >>>

{a} >> 2

Numeric

Numeric

Relational operators

>   <   >=   <=  

{a} >= 123

Numeric

Boolean

Equality operators and regular expression match operator

==   equal

!= not equal

~= match operator

{name} == "test"

Any (Strings only for the match operator "~=")

Boolean

Bitwise AND operator

&

{z} & 0xFFFF

Numeric

Numeric

Bitwise XOR operator

^

{y} ^ 0x1A

Numeric

Numeric

Bitwise OR operator

|

{x} | 0xFF

Numeric

Numeric

Logical AND operator

&&

{z} = 1 && {x} > 0

Boolean

Boolean

Logical OR operator

||

{x} > 5 || {y} < 1

Boolean

Boolean

Conditional operator

? :

{y} > 5 ? 1 : 0

Boolean for first argument, any type for other arguments

Any

Parenthesis

Expressions may also include parenthesis that change operators precedence.

Example:

1 + 2 * 3 evaluates to 7

but        

(1 + 2) * 3 evaluates to 9

Conditional Operator

The conditional operator, ?:, can be used to conditionally evaluate expressions. It has three arguments. The first argument should evaluate to a Boolean value. If it evaluates to TRUE, the operator result is the second argument. If the first argument is FALSE, the operator result is the third argument.

condition ? value_if_true : value_if_false

Example:

2 * 2 == 4 ? "Yes" : "No"

Resolves to the String, "Yes".

Regular Expression Match Operator

Both arguments must be strings, or can be cast as strings ( such as float and integer). Returns a Boolean value.

If the regular expression defined by the second argument matches exactly against the first argument, the operation returns TRUE.

If there is no match, or a partial match, the operation evaluates to FALSE.

Examples:

Example

Evaluation Value

Notes

"Example" ~="\\w+"

TRUE

Note that the “\” character must be escaped in the regular expression string.

"Example" ~="Exam"

FALSE

Although a partial match was found, Exam, the full string was not matched so FALSE is returned.

"Example String" ~="\\w+"

FALSE

There are two matches for this regular expression in the first argument. This evaluates to FALSE because the regular expression does not match the first argument in its entirety.

3/5~="\\d+\\.6"

TRUE

First argument is evaluated as Float, and then cast to String to produce "0.6" which the regular expression exactly matches.

25 ~= 5*5

TRUE

Mathematical operations can be performed in both arguments. If the results can be cast to string they will be evaluated as a regular expression.

295 ~= 5/2

TRUE

The second argument evaluates as 2.5 which is cast as a String, and as the . character is a wildcard, it matches 295

String Concatenation

If at least one argument of an additive operator is a String, the second argument is converted to its string representation. In this case the evaluation result is the result of the concatenation of these strings.

Example:

"test" + 123

resolves to String "test123".

Was this page helpful?