04-16-2010 05:47 PM
I have an array of varing length. Each element in the array contains a string. I want to put a space character " " between each character of each string in the array. The length of the string in each element of the array varies.
I have played with nested for loops with shift registers and feedback nodes with no success, and started thinking I'm making this too difficult.
Thanks,
Mike
Solved! Go to Solution.
04-16-2010 06:04 PM
Try this
04-16-2010 06:10 PM
04-17-2010 12:47 AM
04-17-2010 01:44 AM - edited 04-17-2010 01:46 AM
(Lucither: Your code will make every other array element an empty string. It does not insert spaces between characters as required.)
There are some nice solutions already posted above, here's another random one. 😉
04-17-2010 01:55 AM