Transform seperated string to list
Transform a string that is seperated by a certain character to a list
Input parameters
Name | Description | Type | Required | Default value |
---|---|---|---|---|
Seperated string | The seperated string to transform. | STRING | false | |
Seperator | The seperator that was used within the string. For example the string 'a,b,c' with the seperator ',' will result in the list: ['a','b','b']. | STRING | false |
Output
Name | Description | Type | Default value |
---|---|---|---|
Result | The name of the variable to store in the "Variable scope" containing the result. | ARRAY | SEPERATED_LIST |