Guidelines for Expressions
When you define an action in a robot, you sometimes need to update a value, complete a calculation using the value, or perform an operation on the value. Complete these tasks by using expressions. For each expression, you must use the correct syntax.
About Expressions
An expression performs an operation on a value and returns another value.
When building a robot, you can use expressions in many fields. The value that an expression works with can come from many places, including:
-
An application that the robot interacts with.
-
Another application.
-
A variable, parameter, or property that you define.
-
A value that you define.
For more real-world examples of expressions, see Use Cases.
Mathematical Operators
A mathematical operator performs math operations, such as addition and subtraction.
Operator | Python equivalent | Description | Expression | Returns |
---|---|---|---|---|
+ | + | Addition | ${2+2} |
4 |
- |
- |
Subtraction | ${3-1} |
2 |
* |
* |
Multiplication | ${3*2} |
6 |
/ |
/ |
Division | ${8/4} |
2 |
% |
% |
Modulo, which returns the remainder of a division | ${3%2} |
1 |
Comparison Operators
A comparison operator compares values and returns true or false.
Operator | Python equivalent | Description | Expression | Returns |
---|---|---|---|---|
> |
> |
Greater than |
${2>3} |
false |
< |
< |
Less than |
${1<3} |
true |
>= |
>= |
Greater than or equal to |
${2>=1} |
false |
<= |
<= |
Less than or equal to |
${4<=5} |
true |
== |
== |
Equal to |
|
true |
Logical Operators
A logical operator combines two comparisons and returns true or false.
Operator | Python equivalent | Description | Expression | Returns |
---|---|---|---|---|
&& |
and |
Both statements must be true |
|
true |
|| |
or |
Either statement must be true |
|
false |
Inversion Operators
An inversion operator returns the opposite result from what you'd expect.
Operator | Python equivalent | Description | Expression |
---|---|---|---|
! |
not |
NOT operation, which inverses the result of a comparison Use parentheses to clearly separate the NOT operation
( |
|
Functions
A function takes in data, processes it, and returns a result.
Function | Python equivalent | Description | Format | Example |
---|---|---|---|---|
toNumber |
No direct equivalent, though you can use
|
Returns an integer or float for a numerical string. |
where: value is the number to return |
Return a number from a numeric string value
If the string value contains any non-numeric
characters, an error occurs. For example,
|
toString |
|
Returns a string that represents an object. |
where: value is the string to return |
Return a string that represents a number ${toString(1)} returns
1 Return a person's first and last name You define a data type named Person. Person contains two properties: First_name and Last_name. Next, you define a variable, var1. Base var1 on the Person data type. A robot returns the following values for the variable:
Given this scenario, the following expression:
returns |
subString |
$name[start:stop] |
Returns the specified characters within a string. Indexes are zero based. In plain English, a
zero-based index means that you start counting the values at 0.
For example, if you're using a
subString
function for the value ABC :
|
where:
|
Return a subset of letters
Return the last four digits of a phone number
|
Formatting Rules for Expression Syntax
When you're creating robot actions or robot resources, you can enter expression syntax into many fields. You must use the correct syntax for each expression.
General Formatting Rules
Some general rules apply to all expressions.
Guideline | More information |
---|---|
Format all expressions using the following syntax:
|
Enclose the entirety of every expression within curly brackets. For example: ${toString($VARIABLE.CurrentInvoice[InvoiceAmount])
== $VARIABLE.InvAmt &&
$VARIABLE.CurrentInvoice[SupplierName]
==$VARIABLE.SuppName} |
Enclose all literal strings in quotation marks:
|
A literal string is any straight text that you type. For example:
|
You can use literal numbers but not exponents |
Supported values:
Not supported:
|
Expect that the order of operations follows globally established rules of precedence |
For example, the expressions on either side of a logical operator are evaluated before the logical operator is evaluated. |
Formatting Rules for Placeholder Values
Each placeholder value, such as a variable, robot connection, or input and output property, has its own formatting rules for expression syntax.
Value | Format |
---|---|
|
Format for an input property
where:
Format for a data type property on an input property Use this format when you base an input property on a custom data type with one or more properties, and you need to refer to one of the data type properties.
where:
Note: Inputs properties can be nested. Follow the same formatting rules for nested properties. For example:
|
|
Format for an output property
where:
Format for a data type property on an output property Use this format when you base an output property on a custom data type with one or more properties, and you need to refer to one of the data type properties.
where:
Note: Output properties can be nested. Follow the same formatting rules for these nested properties. For example:
|
|
where:
|
|
where:
|
|
where:
|
|
Format for a variable
where:
Format for a data type property on a variable Use this format when you base a variable on a custom data type with one or more properties, and you need to refer to one of the properties.
where:
Note: Variables can have nested properties. Follow the same formatting rules for these nested properties. For example:
|
When to Convert a String to a Number
When you use the get text action to obtain a value from an application, Oracle Integration stores the value as a string. If you want to perform a numeric function on the value, such as adding it to another number or comparing it to another number, you must first convert the value to a number.
If you don't convert the value to a number, the numeric function won't work as expected.
Use the toNumber
function to convert a string to a number. See Functions.