Split

split [<text>] (<separator string>)

Creates a list by splitting a string into multiple items separated by the given string section.

Parameters:

  1. The input string to split into a list.
  2. the string or character to treat as the separator in between every section of text. If this is left blank, the text to split will be split at every character.

Returns: The list of string sections in between the separator string.