Split
The Split action divides a string based on the occurences of a given separator.
Overview
The Split action divides a string based on the occurences of a given separator.

Inputs & Outputs
- [ I ] Input string: String to split.
- [ I ] Input separator: String to split based on.
- [ O ] Result: List<String> containing the substrings resulted from dividing the input string based on the separator.

