Split Array
Hi, 1. Any ideas how to split a = {"c", "d","e"}; into a= {"c"}, {"d"},{"e"}; ? Currently when I did Concat Items (a, ","); , the output will be "c,d,e" instead of "c","d","e" . 2. Concat Items did apply after letter c. However, what if I want to concat "," before c such as ",c,d,e"? 3. Is there any possibilities to combine semicolon together with other strings? For example, " " "|| water || bend ...