> 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](https://602309350-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LNeYKoJ5VTmJdlF1rx1%2F-LNixCklvoD49ML8vZ_A%2F-LNixDO_XjPkadwwxQjW%2Flist_from_text.jpg?generation=1538386095433790\&alt=media)

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](https://602309350-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-LNeYKoJ5VTmJdlF1rx1%2F-LNixCklvoD49ML8vZ_A%2F-LNixDOblwwz7y3o3JIP%2Ftext_from_list.jpg?generation=1538386095051543\&alt=media)

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

### Generated Code

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