Fields
Delimiter
The character which is used to split the given input string. For example if you want to separate the following string: this-is-exploded-to-a-list with a delimiter of – the following will be the output:Limit
When not everything needs to be separated a limit can be set. Default no limit is applied and everything is split. This defines the amount of returned list items. For example splitting the following string with a delimiter of – and a limit of 2 will return the following: this-is-exploded-to-a-listSample data
| Input | Delimiter | Limit | Output |
|---|---|---|---|
| this-is-exploded-to-a-list | - | [“this”, “is”, “exploded”, “to”, “a”, “list”] | |
| this-is-exploded-to-a-list | - | 2 | [“this”, “is-exploded-to-a-list”] |