> For the complete documentation index, see [llms.txt](https://docs.discorddungeons.me/quest-editor/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.discorddungeons.me/quest-editor/list-blocks/split_string.md).

# Split String Block

## Create List From Text Block

![Create List From Text](/files/-LNixDO_XjPkadwwxQjW)

The create list from text block generates a list from the specified text split by the specified delimiter.

### Generated Code

```javascript
<text>.split(<delimiter>);
```

## Create Text From List Block

![Create Text From List](/files/-LNixDOblwwz7y3o3JIP)

The create text from list block returns a single string from the specified list with the specified delimiter.

### Generated Code

```javascript
<list>.join(<delimiter>);
```
