split function:

Split the string into array of strings.

Examples:

  • running: (split "one, two, three", ", ") will give: ["one", "two", "three"]

  • running: (split "a|b|c", "|") will give: ["a", "b", "c"]