*
Multiplication operator
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
*
*
Multiplies the String a number of times equal to the value of the Integer.
Examples = 5 * "TestString" // s == TestStringTestStringTestStringTestStringTestString
**
Exponentiation operator
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
+
Addition operator (also concatenates strings)
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | String | |
a2 | In | Yes | String | |
+
Adds up strings and reals.
Arguments
Name | Input/Output | Required? | Type | Comment |
a1 | In | | String | -
|
a2 | In | | Real | -
|
Example 1s = "TestString" + 555 // s=="TestString555"
s = "TestString" + 55m_s // s == "TestString55m_s"
+
Adds up strings and Boolean.
Examples = "TestString" + true // s=="TestStringtrue"
s = "TestString" + false // s=="TestStringfalse"
+
Addition operator.
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | String | |
a2 | In | Yes | Real | |
+
Addition operator (also concatenates strings)
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
+
Addition operator (also concatenates strings)
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Date | |
a2 | In | Yes | TIME | |
+
Addition operator (also concatenates strings)
-
Substraction operator.
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Date | |
a2 | In | Yes | TIME | |
-
Substraction operator.
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Date | |
a2 | In | Yes | Date | |
-
Substraction operator.
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
-
Substraction operator.
Arguments
Name | Input / Output | Required? | Type | Comment |
a2 | In | Yes | Real | |
-
-
Substraction operator. The substraction removes the occurrences of the second string from the first string.
Arguments
Name | Input/Output | Required? | Type | Comment |
a1 | In | | String | -
|
a2 | In | | String | -
|
Exampless = "TestAAABBBCCCDDDDDTest" – "DDD" // ss == TestAAABBBCCCDDTest
ss = " TestAAABBBCCCDDDAAATest " – "AAA" // ss == TestBBBCCCDDDTest
-
Substraction operator.
Arguments
Name | Input / Output | Required? | Type | Comment |
a2 | In | Yes | Integer | |
/
Division operator.
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
<
Less than
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
<
<
Less than
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Date | |
a2 | In | Yes | Date | |
<
Less than
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | String | |
a2 | In | Yes | String | |
<=
Less than or equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
<=
<=
Less than or equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Date | |
a2 | In | Yes | Date | |
<=
Less than or equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | String | |
a2 | In | Yes | String | |
<>
Not equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
<>
Not equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Date | |
a2 | In | Yes | Date | |
<>
Not equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | String | |
a2 | In | Yes | String | |
<>
Not equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Enumere | |
a2 | In | Yes | String | |
<>
<>
Not equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | String | |
a2 | In | Yes | Enumere | |
=
Allows the user to define a String directly from a Real (or SubType of Real) or Boolean without using the function toString.
Arguments
Name | Input/Output | Required? | Type | Comment |
a1 | Out | | String | -
|
a2 | In | | String | -
|
ExampleLet s(String)
s = true // s=="true"
s = 55m_s // s=="55m_s"
=
Equal
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | Out | Yes | String | |
a2 | In | Yes | String | |
=
Equal
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | Out | Yes | Real | |
a2 | In | Yes | Real | |
=
=
Equal
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | Out | Yes | Enumere | |
a2 | In | Yes | String | |
=
Equal
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | Out | Yes | String | |
a2 | In | Yes | Enumere | |
=
Equal
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | Out | Yes | Date | |
a2 | In | Yes | Date | |
==
Equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
==
Equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Date | |
a2 | In | Yes | Date | |
==
Equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | String | |
a2 | In | Yes | String | |
==
Equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Enumere | |
a2 | In | Yes | String | |
==
==
Equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | String | |
a2 | In | Yes | Enumere | |
>
Greater than
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
>
>
Greater than
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Date | |
a2 | In | Yes | Date | |
>
Greater than
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | String | |
a2 | In | Yes | String | |
>=
Greater or equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Real | |
a2 | In | Yes | Real | |
>=
>=
Greater or equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | Date | |
a2 | In | Yes | Date | |
>=
Greater or equal to
Arguments
Name | Input / Output | Required? | Type | Comment |
a1 | In | Yes | String | |
a2 | In | Yes | String | |
and
Logical conjunction on two expressions
like
like
Arguments
Name | Input / Output | Required? | Type | Comment |
s1 | In | Yes | String | |
s2 | In | Yes | String | |
notlike
notlike
Arguments
Name | Input / Output | Required? | Type | Comment |
s1 | In | Yes | String | |
s2 | In | Yes | String | |
or
Logical disjunction on two expressions
|