Mixing Arrays os strings?
Hello Ninox gurus!
I have 2 strings from a sub-table:
String 1: Number1, Number2, Number3.....
String 2: TextA, TextB, TextC....
I need to get:
"Number1, TextA, Number2, TextB, Number 3, TextC...."
I suspect it must be very simple/easy but I always get frustrated with strings and arrays.
Ideas?
Thank you!
3 replies
-
Just out of the wrist
join(for p in range(0,cnt('String 1') do item('String 1',p) + "," + item('String 2',p) end ,",")So I didn't try it, it might need some tweaking...
Steven
-
Dear Steven,
You are a genius!! it worked perfectly (just 1 ")" missing but easy to solve out) and in such a short time.
Thanks for sharing! and also thanks for your GOOGLE MAPS template. It's super interesting.
-
Javier,
Thank you for these words of praise, they are the reason to keep doing this.
Steven
Content aside
- 4 yrs agoLast active
- 3Replies
- 559Views