Quest Editor
Search
K
Comment on page

Split String Block

Create List From Text Block

Create List From Text
The create list from text block generates a list from the specified text split by the specified delimiter.

Generated Code

<text>.split(<delimiter>);

Create Text From List Block

Create Text From List
The create text from list block returns a single string from the specified list with the specified delimiter.

Generated Code

<list>.join(<delimiter>);