+ as a unary operator simply forces M to evaluate the expression following as numeric; as a binary operator it causes M to perform addition.
More...Example 1
- as a unary operator causes M to negate the expression following; as a binary operator it causes M to perform subtraction.
More...Example 1
\ binary operator for integer division.
More...Example 1
Example 2
# binary operator for modulo, that is, causes M to produce the remainder from integer division of the first argument by the second.
More...Example 1
& binary AND operator produces a true result only if both of the expressions are true.
More...Example 1
! binary OR operator produces a true result if either of the expressions is true.
More...Example 1
' unary NOT operator negates current truth-value.
More...Example 1
Example 2
_ binary operator causes M to concatenate the second expression with the first expresion
More...Example 1
= binary operator causes M to produce a TRUE if the expressions are equal.
More...Example 1
[ binary operator causes M to produce a TRUE if the first expression contains the ordered sequence of characters in the second expression.
More...Example 1
] binary operator causes M to produce a TRUE if the first expression lexically follows the second expression in the character encoding sequence, which by default is ASCII.
More...Example 1
]] binary operator causes M to produce a TRUE if the first expression lexically sorts after the second expression in the subscript collation sequence.
More...Example 1
The equal sign (=) between two numeric values tests for numeric equality.
More...Example 1
control characters ASCII 0-31 and 127.
More...Example 1
any character; used to pass all characters in portions of the string where the pattern is not restricted.
More...Example 1
lower-case alphabetic characters, ASCII 97-122.
More...Example 1
Example 2
punctuation, ASCII 32-47, 58-64, 91-96, 123-126.
More...Example 1
Example 2
upper-case alphabetic characters, ASCII 65-90.
More...Example 1
The repetition count consists of either a single integer literal or a period
The format for the . is:
Example 1
Example 2