Hi
I would like to get a vector of chars, ie strings of length 1.
If I use char as below I get a string scalar.
The Mata function -tokens- might be a solution, but in that case I can't figure out what the separator should be.
Looking forward to hear from you
I would like to get a vector of chars, ie strings of length 1.
If I use char as below I get a string scalar.
Code:
: f = jumble((1,1,2,2,3,4,4,4,5,5,5)') : char((f :+ 96)') acdeeebdabd
Looking forward to hear from you
Comment