SPLIT

Format

SPLIT( src , delim [ , max ] )

Function

Arguments

src
The string to be split. (If you put a variable here that could be a numeric type, it is recommended to make it a string type variable with TOSTR)
delim
The delimiter to split the string at.
max
The maximum number of divisions (optional). If 0 is specified, everything is divided. The default is 0.

Return value

Related

Version

Example

_array = SPLIT("A//B//C//D//E", "//", 3)

_array holds the values ("A", "B", "C//D//E").