In Applescript I have a string of single digit numbers:
0123456789
I want to go through that string and add a comma between each number, so it would show:
0,1,2,3,4,5,6,7,8,9
How can I do this with Applescript?
Notes
- I want both the input and output to be of type “string” – not list.
- The numbers will always be single digit numbers.
Something like this?