|
|
|
|
Functions
MioScript Reference
|
|
Syntax
| str.explode(targetArray, String, Separator) |
Parameters
| ARRAY | targetArray | Name of the variable to store the new array.
| | STRING | String | String to explode.
| | STRING | Separator | Separator. |
Return value
Description
Explodes a string and fill an array.
See also: str.implode.
Note: This function is defined in the library klib.k and is linked automatically.
|
MioScript Sample Code
&myString = "A<BR>B<BR>C"
str.explode(myArray, &myString, "<BR>")
alert(&myArray[])
|
|
|
|