Function

  Name Description
Public method string str_split(string subject, string delimeter); returns an array of strings divided by delimeter
  Shortcut Name  
Public method _sp()  

Example

local arr = str_split("Hello World", " ");
Log(arr[1]); --prints Hello

See Also