String.Split¶
Name | Mandatory | Description | Default | Type |
---|---|---|---|---|
⬅️ Input |
The string to split. | String |
||
Output ➡️ |
A sequence of strings, containing the separated parts of the input string. | [String] |
||
Separator |
No | The separator string to segment the input with. The input is split at each point where this string occurs. | `` | String Var(String) |
KeepSeparator |
No | Whether to keep the separator in the output. | false |
Bool |
This shard splits the input string into a sequence of its constituent strings, using the string specified in the Separator parameter to segment the input. If the KeepSeparator parameter is true, the separator will be included in the output.