List to String
Description
This operation converts a list of comma-separated values (data type listString
) into a string of values divided by a specific separator.
Data types
These are the input/output expected data types for this operation:
Input data
- List of comma-separated values.
Output data
- Resulting string of values divided by the given separator.
Parameters
These are the parameters you need to configure to use this operation (mandatory parameters are marked with a *):
Example
Suppose you want to convert a series of lists of comma-separated values into a single string representing those values separated by /
:
In your Pipeline, open the required Action configuration and select the input Field.
In the Operation field, choose List to string.
Set Separator to
/
.Give your Output field a name and click Save. The values in your input field will be transformed into a string with its values separated by the given character. For example:
hello,my,world -> hello/my/world
Last updated
Was this helpful?