enhancement
With $input.split(separator: ",", trim: true), a string of separators can be split into a list of parts. An additional parameter limit is used to limit the number of separator hits.
"a, b, c".split(",", limit:1)
should
["a", "b, c"]
should be returned.