It breaks a string into the first parameter and the rest of the parameters (A left side and right side of the string).
Example: to split text: "^"This is^" the best year",
split(text, arg1, len1, arg2, len2)
arg1="This is", arg2=the best year
This is more useful than parse() because you can keep breaking any number of arguments.
User Contributed Notes
anonymous
Feb-22-05 01:27:03
Actually, shouldn't it be:
arg1="^"This is^"" arg2="the best year"