> For the complete documentation index, see [llms.txt](https://appmaster.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://appmaster.gitbook.io/docs/business-logic/block/functions/string/split-string.md).

# Split String

**Example:** Split String(string: "lorem ipsum", separator: " ") = \["lorem", "ipsum"].

### Flow Connections <a href="#flow-connections" id="flow-connections"></a>

* \[Input] In - starts the block's execution.
* \[Output] Out - activates when the block has finished its execution.

### Data Connections <a href="#data-connections" id="data-connections"></a>

* \[Input] String (string) - string to be split.
* \[Input] Separator (string) - character or sequence of characters that would mark the end of one element and the start of the next.
* \[Output] Result (string array) - result of the operation.
