> For the complete documentation index, see [llms.txt](https://docs.onum.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.onum.com/pipelines/actions/transformation/field-transformation/field-transformation-operations/conversion/list-to-string.md).

# 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

`ListString` - List of comma-separated values.

### Output data

`String` - 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 <mark style="color:red;">**\***</mark>):

<details>

<summary>Separator<mark style="color:red;"><strong>*</strong></mark></summary>

Enter the character(s) you want to use to divide the values in the input string lists.

</details>

***

## Example

Suppose you want to convert a series of lists of comma-separated values into a single string representing those values separated by `/`:

1. In your Pipeline, open the required [Action](https://onum.gitbook.io/onum-docs/the-workspace/pipelines/actions) configuration and select the input **Field**.
2. In the **Operation** field, choose **List to string**.
3. Set **Separator** to `/`.
4. 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:

<pre><code><strong>hello,my,world -> hello/my/world
</strong></code></pre>

{% hint style="info" %}
You can try out operations with specific values using the **Input** field above the operation. You can enter the value in the example above and check the result in the **Output** field.
{% endhint %}
