> For the complete documentation index, see [llms.txt](https://docs.rewst.help/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rewst.help/documentation/automations/actions-in-rewst/transform-actions/split-text-transform-action.md).

# Split text transform action

## Use case

You have a string that you would like to split each word/character by a delimiter to create a list.

## Overview

Splits text on a delimiter into a list of strings.

## Parameters

<table><thead><tr><th width="217">Parameter</th><th width="417.3333333333333">Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Max Splits</td><td>The maximum number of splits. If not specified or -1, then there is no limit on the number of splits (all possible splits are made)</td><td>true</td></tr><tr><td>Seperator</td><td>Character or sequence of characters to split on (default is ), such as ' , ',':', etc.</td><td>false</td></tr><tr><td>Text to split</td><td>The string to be split.</td><td>true</td></tr></tbody></table>

## Usage

<details>

<summary>Example: Splitting a string to get each word in a sentence or phrase</summary>

Inputs:

**Max Splits:** -1

**Seperator:** (no value was provided so default of space will be used)

**Text to split:** The quick brown fox jumps over the lazy dog

</details>

## Results output

Result of Example:

```json
[
  "The",
  "quick",
  "brown",
  "fox",
  "jumps",
  "over",
  "the",
  "lazy",
  "dog"
]
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.rewst.help/documentation/automations/actions-in-rewst/transform-actions/split-text-transform-action.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
