- Release notes
- Before you begin
- Managing access
- Getting started
- Integrations
- Working with process apps
- Working with dashboards and charts
- Working with process graphs
- Working with Discover process models and Import BPMN models
- Showing or hiding the menu
- Context information
- Export
- Filters
- Sending automation ideas to UiPath® Automation Hub
- Tags
- Due dates
- Compare
- Conformance checking
- Root cause analysis
- Simulating automation potential
- Starting a Task Mining project from Process Mining
- Triggering an automation from a process app
- Viewing Process data
- Creating apps
- Loading data
- Transforming data
- Customizing process apps
- Publishing process apps
- App templates
- Notifications
- Additional resources

Process Mining
Text
Description
LENGTH OF CHARACTERS
.
Syntax
LEFT <Text field or Expression> NUMBER OF CHARACTERS <Numeric field or expression>
Supported values
LEFT
. Only numeric values can be used for NUMBER OF CHARACTERS
NULL handling
NULL
, the result is NULL
.
Example
LEFT Case type NUMBER OF CHARACTERS 5
Description
LENGTH OF CHARACTERS
.
Syntax
RIGHT <Text field or Expression> NUMBER OF CHARACTERS <Numeric field or expression>
Supported values
RIGHT
. Only numeric values can be used for NUMBER OF CHARACTERS
NULL handling
NULL
, the result is NULL
.
Example
RIGHT Case type LENGTH OF CHARACTERS 5
Description
LENGTH OF CHARACTERS
and the start position is defined by STARTING FROM CHARACTER
.
Syntax
SUBSTRING <Text field or Expression> NUMBER OF CHARACTERS <Numeric field or expression> STARTING FROM CHARACTER <Numeric field
or Expression>
Supported values
SUBSTRING
. Only numeric values can be used for NUMBER OF CHARACTERS
and STARTING FROM CHARACTER
.
NULL handling
NULL
, the result is NULL
.
Example
SUBSTRING Phonenumber = "1-800-123-4567" NUMBER OF CHARACTERS 3 STARTING FROM CHARACTER 3
(Returns the 3-digit area code 800)
Description
Concatenates two or more text field values or expression results into one text value.
Syntax
CONCAT <Text field or Expression> + <Text field or Expression> [+ <Text field or Expression>]
Supported values
Only text values can be used.
NULL handling
NULL
values are not included in the result. For example CONCAT('A', NULL, 'B')
returns AB
.
Example
CONCAT (Purchase_Order_ID,'-',Purchase_order_item_ID
(creates a new CaseID by merging the Purchase_Order_ID and the Purchase-Order_Item ID.)
Description
NULL
value in a list of values defined by expressions, fields, or constants.
Syntax
COALESCE <Expression or Field or Constant> + <Expression or Field or Constant> [+ <Expression or Field or Constant>]
Supported values
All values can be used.
NULL handling
NULL
, then the COALESCE
function will return NULL
.
Example
COALSCE (Purchase_order_ID, Invoice_ID)
(Returns the first non NULL
value to check if there are Invoices created without a Purchase order.