Lists
Performs operations on lists.
Actions
Action |
Configuration fields |
Data type |
Required? |
---|---|---|---|
Merge lists - Combine two lists into one. |
List 1 - Enter an array or comma-separated values. Warning Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
List 2 - Enter an array or comma-separated values. Warning Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
|
Get element by index - Return a list element by its index position. |
List - Enter an array or comma-separated values. Warning Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
Index - Enter the index position of the element to return. |
Number |
|
|
Reverse list - Reverse the order of the list. |
List - Enter an array or comma-separated values. Warning Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
Add item to list - Add an item to a list at a specified index position. |
List - Enter an array or comma-separated values. Warning The list can only contain text, numbers, and dates. Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
Index - Enter the index position where the element will be added. Warning Leave the Index field empty to insert the item at the end of the list. |
Number |
|
|
Value - Enter the item's value. |
String |
|
|
Remove item from list - Remove an item from a list at a specified index position. |
List - Enter an array or comma-separated values. Warning The list can only contain text, numbers, and dates. Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
Index - Enter the index position where the element will be removed. |
Number |
|
|
Replace item from list - Replace an item in a list at a specified index position. |
List - Enter an array or comma-separated values. Warning The list can only contain text, numbers, and dates. Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
Index - Enter the index position where the element will be replaced. |
Number |
|
|
Value - Enter the item's value. |
String |
|
|
Convert list to text - Convert a list of values to text, joined by a separator. |
List - Enter an array or comma-separated values. Warning The list can only contain text, numbers, or dates. Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
Separator - Specify a string separator. |
String |
|
|
Get maximum value - Return the maximum value in a list. |
List - Enter an array or comma-separated values. Warning Works only on numeric values. Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
Get minimum value - Return the minimum value in a list. |
List - Enter an array or comma-separated values. Warning Works only on numeric values. Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
Remove duplicates - Remove any duplicates from a list. |
List - Enter an array or comma-separated values. Warning Works only on primitive data types, such as numbers, Booleans, and strings. Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
Get list length - Return the number of elements in a list. |
List - Enter an array or comma-separated values. Warning Works only on primitive data types, such as numbers, Booleans, and strings. Only escaped commas (\,), single quotes (\') and double quotes (\") are preserved. |
String |
|
Convert text to list - Convert text to an array of values, using a separator. |
Text - Enter the text to be converted to an array. Warning All array elements will be strings. |
String |
|
Separator - Specify the separator for the array elements. Warning Defaults to comma (,). |
String |
|