...
Argument | Type | Description |
---|---|---|
string | String | String to be split |
separator | Regular Expression | Regular expression representing the breakpoints in string where the splits should occur |
...
split("",",") or split("_NULL",",")
returns
[ ]
split("one,two,three",",")
...
["some text","more text","final text"]