Split String
Click to copy
Splits a string into an array by a given separator.
Example: Split String(string: "lorem ipsum", separator: " ") = ["lorem", "ipsum"].
Flow Connections
- [Input] In - starts the block's execution.
- [Output] Out - activates when the block has finished its execution.
Data Connections
- [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.