List list = strSplit("split this string", " ");
str joined = ????;
I'd expect something like:
str joined = strJoin(list, "*"):
or
str joined = List::Join(list, "*");
or
str joined = list.strJoin("*");
Any hints? I can't seem to find anything equivalent.
Thanks for any reply,
Dave Cline
*This post is locked for comments
I have the same question (0)