How is it possible to split a VBA string into an array of characters?
I tried Split(my_string, "") but this didn't work.
|
|
|
Safest & simplest is to just loop;
If your guaranteed to use ansi characters only you can;
|
|||
|
|
|
You can just assign the string to a byte array (the reverse is also possible). The result is 2 numbers for each character, so Xmas converts to a byte array containing {88,0,109,0,97,0,115,0}
which will give you {88,109,97,115} but in that case you cannot assign the byte array back to a string. |
|||
|
|
|
Here's another way to do it in VBA.
|
|||
|
|