Sort
Description
This operation arranges the elements of an input (e.g., words, numbers, or lines) in a specific order. It is useful for organizing data, analyzing patterns, or preparing datasets for further processing.
Data types
These are the input/output expected data types for this operation:
Input data
- Input strings to be sorted.
Output data
- Sorted data.
Parameters
These are the parameters you need to configure to use this operation (mandatory parameters are marked with a *):
Example
Suppose you want to sort the terms of a series of strings in your input data:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose Sort.
Set Delimiter to
Comma
.Set Order to
Alphabetical (case sensitive)
.Set Reverse to false.
Give your Output field a name and click Save. The terms in your input field will be sorted following the specified conditions.
For example, this text:
banana,apple,orange,grape
will be sorted as:
apple,banana,grape,orange
Last updated
Was this helpful?