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
Bonus. I figured it was in there -- somewhere. Thanks for taking the time to educate me.
Hi DaveCline,
str joined = strList2str(list);
André Arnaud de Cal...
292,031
Super User 2025 Season 1
Martin Dráb
230,868
Most Valuable Professional
nmaenpaa
101,156