string [] re_split(string regex, string input, int maxsplits=0)
Splits the input
string into substrings between matches of regex
.
If maxsplits
is given and not 0, it specifies the maximum number of splits to do.
See also |