@WanCine wrote:
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" .
I'm having trouble making sense of this question because a= {"c"}, {"d"},{"e"}; isn't valid JSL. There's no data structure which will hold three separate lists like that. Can you clarify exactly what you're trying to do?
2. Concat Items did apply after letter c. However, what if I want to concat "," before c such as ",c,d,e"?
Try this:
a = {"c", "d", "e"};
z = "," || Concat Items( a, "," );
3. Is there any possibilities to combine semicolon together with other strings? For example, " " "|| water || bend || "," || " " " , thus the output will be "water bend,"
I think @jthi pointed out that you can escape quotation marks with \!".
foo = " \!" "|| "water " || "bend" || "," || " \!" ";
-Jeff