Explode(
string:string,
[string:separators],
[int:limit],
[string:flags]
)
→ array
Splits an input string into an array of smaller strings.
If separators aren't specified it will split on spaces by default. The optional limit argument specifies the maximum number of strings to add to the array. Specify 0 for no limit.
The optional flags are:
| q | Handle quoted strings. Spaces will be ignored within quotes. |
| Q | Handle quoted strings, and remove quotes in the ouptut array. |
Example:
Output(Explode("The quick brown fox"));
--> {"The", "quick", "brown", "fox"}
See also: Implode