-
sourceText expression “hello world” > “h*e*l*l*o* *w*o*r*l*d*” ?
I’d like an expression that will insert a chosen character in-between every character in my text object. If my text was “hello world,” the expression would replace the text with “h*e*l*l*o* *w*o*r*l*d*”. Can someone direct me to a similar example or suggest how i might go about this? Perhaps iterate through each character and then use && concatenate something something?
thanks