From the NannyMUD documentation
2000-12-14
NAME
explode - Explode a string into subparts.SYNTAX
string *explode(string str, string break_string)DESCRIPTION
You should consider using regexplode() instead of explode(), as regexplode() gives better control. This function returns an array of the strings resulting from dividing `str' into the component strings separated by `break_string'. If `break_string' is given as "", `str' is returned. All leading appearances of `break_string' is removed and so is one at the end if existing. If `str' only consist of repeating occurances of `break_string', 0 is returned.SEE ALSO
implode in efun/type_related/implodeSEE ALSO
replace in efun/type_related/replaceSEE ALSO
sprintf in efun/type_related/sprintf