Phantom
Documentation [Help Home] [Phantom Home] |
split
|
string split(string,string) Return Type: string Parameters: string input, string token Description: This function takes an input string
and divides it into an array of strings using the token input as a delimeter.
It is the same as searching for the delimeter in a string and using
the result to perform a substring to extract out the strings between
the delimeters. The input can be any number of characters. The return
value is a one-dimensional array containing the resulting strings. The
token is not included in the output. If no token is found, the input
string is returned.
|