Onetastic Macro Documentation >
>
>
String_Split String_Split
Splits the current string into an array of strings using the given delimiter.
Syntax
Array<String> String_Split(
String string,
String delimiter)
Parameters
- String string
- String to split into an array.
- String delimiter
- Delimiter to split the string using. If empty string, the string is split into its characters.
Examples
$array = String_Split("this is a ball", " ")
$array = String_Split("Banana", "")
|