separate(d,s) -- split the string s into pieces delimited by the string d.
The value is a list of the pieces, the number of which is one more than the number of occurences of d in s, so that the pieces may be reassembled with between.
i1 : separate( ".", "a.b.c.d" ) |
i2 : peek separate( ".", "a.b.c.d" ) |
i3 : concatenate between("=",ooo) |
Ways to use separate :