This operation extracts specific elements from a list of booleans.
These are the input/output expected data types for this operation:
- The input lists of booleans.
- The specific elements you want to extract.
These are the parameters you need to configure to use this operation (mandatory parameters are marked with a *):
Suppose you want to extract a specific value from your input list of booleans:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose Index list boolean.
Set Index to 1
.
Give your Output field a name and click Save. You'll get the value corresponding to the indicated position. For example:
true, false, true, false -> false
This operation extracts specific elements from a list of float values.
These are the input/output expected data types for this operation:
- The input lists of float values.
- The specific elements you want to extract.
These are the parameters you need to configure to use this operation (mandatory parameters are marked with a *):
Suppose you want to extract a specific value from your input list of float values:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose Index list float.
Set Index to 1
.
Give your Output field a name and click Save. You'll get the value corresponding to the indicated position. For example:
0.0, -1.0, 2.0 -> -1.0
This operation extracts specific elements from a list of integer values.
These are the input/output expected data types for this operation:
- The input lists of integer values.
- The specific elements you want to extract.
These are the parameters you need to configure to use this operation (mandatory parameters are marked with a *):
Suppose you want to extract a specific value from your input list of integer values:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose Index list integer.
Set Index to 2
.
Give your Output field a name and click Save. You'll get the value corresponding to the indicated position. For example:
0, 1, 2, 3 -> 2
This operation extracts specific elements from a list of strings.
These are the input/output expected data types for this operation:
- The input lists of strings.
- The specific elements you want to extract.
These are the parameters you need to configure to use this operation (mandatory parameters are marked with a *):
Suppose you want to extract a specific value from your input list of strings:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose Index list string.
Set Index to 2
.
Give your Output field a name and click Save. You'll get the string value corresponding to the indicated position. For example:
test0, test1, test2, test3 -> test2
This operation extracts specific elements from a list of timestamps.
These are the input/output expected data types for this operation:
- The input lists of timestamps.
- The specific elements you want to extract.
These are the parameters you need to configure to use this operation (mandatory parameters are marked with a *):
Suppose you want to extract a specific value from your input list of timestamps:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose Index list timestamp.
Set Index to 1
.
Give your Output field a name and click Save. You'll get the value corresponding to the indicated position. For example:
time1, time2, time3 -> time2